├── Created.txt ├── README.md ├── colors.py ├── follow_bot.py ├── main.py ├── proxies.txt └── requirements.txt /Created.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmohacker/Spotify-Follower-Bot/38501dc17ec2d07987621e9f9f6eaadd106bc0db/Created.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Spotify-Follower-Bot 2 | py main.py 3 | -------------------------------------------------------------------------------- /colors.py: -------------------------------------------------------------------------------- 1 | import platform, os 2 | 3 | try: 4 | if platform.system() == 'Windows': 5 | os.system('cls') 6 | else: 7 | os.system('clear') 8 | except: 9 | pass 10 | 11 | # Foreground colors 12 | def black(): 13 | return '\u001b[30;1m' 14 | 15 | def red(): 16 | return '\u001b[31;1m' 17 | 18 | def green(): 19 | return '\u001b[32;1m' 20 | 21 | def yellow(): 22 | return '\u001b[33;1m' 23 | 24 | def blue(): 25 | return '\u001b[34;1m' 26 | 27 | def magenta(): 28 | return '\u001b[35;1m' 29 | 30 | def cyan(): 31 | return '\u001b[36;1m' 32 | 33 | def white(): 34 | return '\u001b[37;1m' 35 | 36 | def reset(): 37 | return '\u001b[0m' 38 | 39 | def b_black(): 40 | return '\u001b[40;1m' 41 | 42 | def b_red(): 43 | return '\u001b[41;1m' 44 | 45 | def b_green(): 46 | return '\u001b[42;1m' 47 | 48 | def b_yellow(): 49 | return '\u001b[43;1m' 50 | 51 | def b_blue(): 52 | return '\u001b[44;1m' 53 | 54 | def b_magenta(): 55 | return '\u001b[45;1m' 56 | 57 | def b_cyan(): 58 | return '\u001b[46;1m' 59 | 60 | def b_white(): 61 | return '\u001b[47;1m' 62 | 63 | if __name__ == '__main__': 64 | os.system('pause >NUL') 65 | -------------------------------------------------------------------------------- /follow_bot.py: -------------------------------------------------------------------------------- 1 | try: 2 | import requests, random, string, names 3 | except ImportError: 4 | input( 5 | "Error while importing modules. Please install the modules in requirements.txt" 6 | ) 7 | exit() 8 | 9 | 10 | class spotify: 11 | def __init__(self, profile, proxy=None): 12 | self.session = requests.Session() 13 | self.profile = profile 14 | self.proxy = proxy 15 | 16 | def register_account(self): 17 | headers = { 18 | "Accept": "*/*", 19 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36", 20 | "Content-Type": "application/x-www-form-urlencoded", 21 | "Referer": "https://www.spotify.com/", 22 | } 23 | name = names.get_first_name() 24 | surname = " " + names.get_last_name() 25 | domains = ['gmail.com', 'yahoo.com', 'hotmail.com', 'hotmail.co.uk', 'hotmail.fr', 'outlook.com', 'icloud.com', 'mail.com', 'live.com', 'yahoo.it', 'yahoo.ca', 'yahoo.in', 'live.se', 'orange.fr', 'msn.com', 'mail.ru', 'mac.com'] 26 | random_domain = random.choice(domains) 27 | email = "".join(random.choices(string.ascii_letters + string.digits, k=8)) + f'@{random_domain}' 28 | password = ("").join(random.choices(string.ascii_letters + string.digits, k=8)) 29 | birth_year = random.randint(1970, 2005) 30 | birth_month = random.randint(1, 12) 31 | birth_day = random.randint(1, 28) 32 | gender = random.choice(["male", "female"]) 33 | 34 | # print(f"Email: {email}") 35 | # print(f"Password: {password}") 36 | # print(f"Birth Date: {birth_month}/{birth_day}/{birth_year}") 37 | # print(f"Name Surname: {name}/{surname}") 38 | # print(f"Gender: {gender}") 39 | 40 | 41 | proxies = None 42 | if self.proxy != None: 43 | proxies = {"https": f"http://{self.proxy}"} 44 | data = f"birth_day={birth_day}&birth_month={birth_month}&birth_year={birth_year}&collect_personal_info=undefined&creation_flow=&creation_point=https://www.spotify.com/uk/&displayname={name}{surname}&email={email}&gender={gender}&iagree=1&key=a298bb7fb9bb41dda7454f887a9060a7&password={password}&password_repeat={password}&platform=www&referrer=&send-email=1&thirdpartyemail=0&fb=0" 45 | 46 | try: 47 | create = self.session.post( 48 | "https://spclient.wg.spotify.com/signup/public/v1/account", 49 | headers=headers, 50 | data=data, 51 | proxies=proxies, 52 | ) 53 | if "login_token" in create.text: 54 | login_token = create.json()["login_token"] 55 | with open("Created.txt", "a") as f: 56 | f.write(f"{email}:{password}:{login_token}\n") 57 | return login_token 58 | else: 59 | return None 60 | except: 61 | return False 62 | 63 | def get_csrf_token(self): 64 | try: 65 | r = self.session.get( 66 | "https://www.spotify.com/uk/signup/?forward_url=https://accounts.spotify.com/en/status&sp_t_counter=1" 67 | ) 68 | return r.text.split('csrfToken":"')[1].split('"')[0] 69 | except: 70 | return None 71 | 72 | def get_token(self, login_token): 73 | headers = { 74 | "Accept": "*/*", 75 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36", 76 | "Content-Type": "application/x-www-form-urlencoded", 77 | "X-CSRF-Token": self.get_csrf_token(), 78 | "Host": "www.spotify.com", 79 | } 80 | self.session.post( 81 | "https://www.spotify.com/api/signup/authenticate", 82 | headers=headers, 83 | data="splot=" + login_token, 84 | ) 85 | headers = { 86 | "accept": "application/json", 87 | "Accept-Encoding": "gzip, deflate, br", 88 | "accept-language": "en", 89 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36", 90 | "spotify-app-version": "1.1.52.204.ge43bc405", 91 | "app-platform": "WebPlayer", 92 | "Host": "open.spotify.com", 93 | "Referer": "https://open.spotify.com/", 94 | } 95 | try: 96 | r = self.session.get( 97 | "https://open.spotify.com/get_access_token?reason=transport&productType=web_player", 98 | headers=headers, 99 | ) 100 | return r.json()["accessToken"] 101 | except: 102 | return None 103 | 104 | def follow(self): 105 | if "/user/" in self.profile: 106 | self.profile = self.profile.split("/user/")[1] 107 | if "?" in self.profile: 108 | self.profile = self.profile.split("?")[0] 109 | login_token = self.register_account() 110 | if login_token == None: 111 | return None, "while registering, ratelimit" 112 | elif login_token == False: 113 | if self.proxy == None: 114 | return None, f"unable to send request on register" 115 | return None, f"bad proxy on register {self.proxy}" 116 | auth_token = self.get_token(login_token) 117 | if auth_token == None: 118 | return None, "while getting auth token" 119 | headers = { 120 | "accept": "application/json", 121 | "Accept-Encoding": "gzip, deflate, br", 122 | "accept-language": "en", 123 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36", 124 | "app-platform": "WebPlayer", 125 | "Referer": "https://open.spotify.com/", 126 | "spotify-app-version": "1.1.52.204.ge43bc405", 127 | "authorization": "Bearer {}".format(auth_token), 128 | } 129 | try: 130 | self.session.put( 131 | # Playlist bot dont forget to change id 132 | # "https://api.spotify.com/v1/playlists/5gruZX4W0sSOtDIBXY8rR7/followers?type=user&ids=" + self.profile, 133 | # Dynamic User Bot 134 | "https://api.spotify.com/v1/me/following?type=user&ids=" + self.profile, 135 | headers=headers, 136 | ) 137 | return True, None 138 | except: 139 | return False, "while following" 140 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from follow_bot import spotify 2 | import threading, os, time 3 | from colors import green, red, reset 4 | 5 | lock = threading.Lock() 6 | counter = 0 7 | proxies = [] 8 | proxy_counter = 0 9 | logo = ''' ,----------------, ,---------, 10 | ,-----------------------, ," ,"| 11 | ," ,"| ," ," | 12 | +-----------------------+ | ," ," | 13 | | .-----------------. | | +---------+ | 14 | | | | | | | -==----'| | 15 | | | Made by | | | | | | 16 | | | cosmohacker | | |/----|`---= | | 17 | | | C:\>_ | | | ,/|==== ooo | ; 18 | | | | | | // |(((( [33]| ," 19 | | `-----------------' |," .;'| |(((( | ," 20 | +-----------------------+ ;; | | |," -github.com/cosmohacker- 21 | /_)______________(_/ //' | +---------+ 22 | ___________________________/___ `, 23 | / oooooooooooooooo .o. oooo /, \,"----------- 24 | / ==ooooooooooooooo==.o. ooo= // ,`\--{)B ," 25 | /_==__==========__==_ooo__ooo=_/' /___________," 26 | `-----------------------------''' 27 | print('%s%s' % (green(), logo)) 28 | spotify_profile = str(input("Spotify Link or Username: ")) 29 | threads = int(input("\nThreads: ")) 30 | 31 | def load_proxies(): 32 | if not os.path.exists("proxies.txt"): 33 | print("\nFile proxies.txt not found") 34 | time.sleep(10) 35 | os._exit(0) 36 | with open("proxies.txt", "r", encoding = "UTF-8") as f: 37 | for line in f.readlines(): 38 | line = line.replace("\n", "") 39 | proxies.append(line) 40 | if not len(proxies): 41 | print("\nNo proxies loaded in proxies.txt") 42 | time.sleep(10) 43 | os._exit(0) 44 | 45 | print("\n[1] Proxies\n[2] Proxyless") 46 | option = int(input("\n> ")) 47 | if option == 1: 48 | load_proxies() 49 | 50 | def safe_print(arg): 51 | lock.acquire() 52 | print(arg) 53 | lock.release() 54 | 55 | def thread_starter(): 56 | global counter 57 | if option == 1: 58 | obj = spotify(spotify_profile, proxies[proxy_counter]) 59 | else: 60 | obj = spotify(spotify_profile) 61 | result, error = obj.follow() 62 | if result == True: 63 | counter += 1 64 | safe_print("Followed {}".format(counter)) 65 | else: 66 | safe_print(f"Error {error}") 67 | 68 | while True: 69 | if threading.active_count() <= threads: 70 | try: 71 | threading.Thread(target = thread_starter).start() 72 | proxy_counter += 1 73 | except: 74 | pass 75 | if len(proxies) <= proxy_counter: #Loops through proxy file 76 | proxy_counter = 0 77 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | 46.101.186.238:80 2 | 159.203.61.169:8080 3 | 183.237.47.54:9091 4 | 192.109.244.221:8080 5 | 182.18.208.59:3128 6 | 115.96.208.124:8080 7 | 120.79.32.83:18081 8 | 110.12.211.140:80 9 | 128.201.232.102:888 10 | 117.74.65.207:443 11 | 217.76.50.200:8000 12 | 5.196.239.79:8000 13 | 141.148.163.150:3128 14 | 103.49.202.252:80 15 | 129.150.36.169:8090 16 | 122.9.131.161:3128 17 | 117.74.65.207:2095 18 | 117.160.250.132:80 19 | 123.154.26.11:8085 20 | 27.115.36.154:9002 21 | 87.68.238.0:8080 22 | 103.190.232.186:80 23 | 139.162.78.109:3128 24 | 162.243.7.18:80 25 | 117.74.65.207:1081 26 | 45.174.79.133:999 27 | 119.7.135.19:9091 28 | 183.222.217.168:9091 29 | 89.39.105.64:36995 30 | 117.74.65.207:9997 31 | 202.169.51.46:8080 32 | 103.154.144.202:8715 33 | 186.150.201.38:8080 34 | 122.9.131.161:20000 35 | 103.183.63.85:83 36 | 45.70.201.179:999 37 | 85.195.237.31:8899 38 | 171.34.53.2:9091 39 | 154.85.58.149:80 40 | 182.253.183.98:80 41 | 117.74.65.207:10443 42 | 120.24.44.35:18081 43 | 41.65.163.85:1976 44 | 61.7.146.7:8082 45 | 183.89.160.195:8080 46 | 117.74.65.207:3127 47 | 168.196.124.146:999 48 | 61.111.38.5:80 49 | 167.71.211.10:80 50 | 117.74.65.207:9002 51 | 111.40.11.204:9091 52 | 103.169.254.164:8061 53 | 123.13.218.68:9002 54 | 196.168.0.50:32650 55 | 64.225.4.29:9494 56 | 112.17.173.55:9091 57 | 117.74.65.207:20000 58 | 117.74.65.215:5001 59 | 117.74.65.215:10000 60 | 117.74.65.207:9994 61 | 161.35.214.127:45749 62 | 123.182.59.239:8089 63 | 5.78.65.163:8080 64 | 64.225.8.118:9994 65 | 117.74.65.215:10726 66 | 201.91.82.155:3128 67 | 190.82.91.202:999 68 | 111.72.218.180:9091 69 | 202.77.115.72:8182 70 | 187.250.27.90:999 71 | 114.102.47.168:8089 72 | 212.46.230.102:6969 73 | 165.227.81.188:9985 74 | 117.74.65.207:1883 75 | 139.196.206.130:18081 76 | 59.44.203.138:9091 77 | 117.74.65.207:6666 78 | 42.228.61.245:9091 79 | 103.165.244.122:3128 80 | 31.128.71.241:8081 81 | 202.137.144.228:8080 82 | 103.118.46.53:32650 83 | 117.74.65.215:10006 84 | 103.82.9.129:8989 85 | 177.105.232.114:8080 86 | 140.250.88.214:3389 87 | 103.245.204.214:8080 88 | 36.255.85.218:32650 89 | 223.84.240.36:9091 90 | 117.74.65.207:4443 91 | 80.249.112.162:80 92 | 110.238.109.146:80 93 | 92.51.31.177:8080 94 | 80.191.244.100:3128 95 | 178.236.223.250:8080 96 | 111.0.65.4:9091 97 | 117.74.65.207:8003 98 | 190.195.225.34:8080 99 | 182.253.70.66:3127 100 | 191.102.254.12:8084 101 | 45.230.172.182:8080 102 | 202.46.84.186:8080 103 | 103.245.204.42:8080 104 | 177.69.180.171:8080 105 | 103.69.108.78:8191 106 | 154.236.177.117:1976 107 | 47.105.139.85:9001 108 | 117.74.65.215:55443 109 | 110.16.77.102:8082 110 | 175.141.204.125:8080 111 | 61.158.175.38:9002 112 | 139.224.190.222:8083 113 | 183.220.6.198:9091 114 | 200.106.184.12:999 115 | 120.194.4.155:5443 116 | 45.112.127.75:8080 117 | 117.74.65.207:5002 118 | 217.52.247.88:1981 119 | 149.28.99.129:8888 120 | 103.76.27.34:8080 121 | 167.172.238.15:9980 122 | 103.166.10.71:32650 123 | 89.218.5.109:37717 124 | 117.160.250.132:8899 125 | 46.4.35.219:1080 126 | 103.159.46.121:83 127 | 103.153.185.229:8080 128 | 117.74.65.207:1024 129 | 45.185.162.203:999 130 | 103.16.119.4:8181 131 | 136.243.19.90:3128 132 | 103.47.67.154:8080 133 | 167.172.238.15:9999 134 | 138.97.118.126:8080 135 | 117.74.65.215:9992 136 | 34.80.59.191:8183 137 | 181.78.27.34:999 138 | 181.57.216.110:999 139 | 93.188.166.232:80 140 | 117.74.65.215:8181 141 | 187.17.232.6:8089 142 | 117.74.65.207:44554 143 | 182.93.85.225:8080 144 | 117.74.65.215:10001 145 | 49.156.23.170:3125 146 | 111.68.117.200:4995 147 | 85.114.112.22:8080 148 | 117.74.65.215:8282 149 | 82.137.244.151:8080 150 | 103.155.217.105:41402 151 | 187.115.10.50:20183 152 | 183.221.242.103:9443 153 | 47.74.152.29:8888 154 | 77.52.178.157:8087 155 | 31.209.128.253:8080 156 | 195.85.212.238:55138 157 | 64.225.4.29:9816 158 | 103.147.247.15:3127 159 | 102.38.17.193:8080 160 | 41.33.145.219:1981 161 | 64.225.8.82:9978 162 | 43.156.100.152:80 163 | 117.74.65.215:8888 164 | 117.74.65.215:82 165 | 31.220.52.49:80 166 | 117.74.65.207:10243 167 | 103.160.201.226:2021 168 | 121.1.41.162:111 169 | 187.190.220.151:8989 170 | 5.78.100.184:8080 171 | 154.236.179.226:1976 172 | 103.145.113.78:80 173 | 61.162.225.180:9091 174 | 186.215.87.194:6006 175 | 208.79.11.97:9080 176 | 190.9.48.81:999 177 | 178.253.203.53:8888 178 | 8.219.211.97:9999 179 | 117.74.65.215:87 180 | 117.74.65.215:3000 181 | 43.153.222.203:8080 182 | 123.57.1.16:45554 183 | 5.9.140.40:3128 184 | 178.131.57.77:8080 185 | 183.239.188.250:9002 186 | 60.246.154.39:80 187 | 183.221.242.102:9443 188 | 203.89.126.250:80 189 | 117.74.65.215:8999 190 | 121.18.224.54:9002 191 | 177.242.151.151:8080 192 | 117.74.65.207:59394 193 | 8.218.115.84:8090 194 | 41.188.149.79:80 195 | 177.71.77.202:20183 196 | 117.74.65.207:31653 197 | 41.180.70.89:8080 198 | 107.152.38.115:8888 199 | 191.240.153.165:8080 200 | 203.19.38.114:1080 201 | 176.88.168.101:8080 202 | 197.246.255.203:3030 203 | 198.59.191.234:8080 204 | 45.70.236.193:999 205 | 200.123.153.45:8080 206 | 117.74.65.207:7890 207 | 1.0.171.213:8080 208 | 191.101.1.116:80 209 | 191.102.254.9:8085 210 | 106.105.115.204:8197 211 | 60.198.53.23:80 212 | 165.227.81.188:9994 213 | 112.74.17.5:8999 214 | 80.14.219.107:3128 215 | 200.52.148.10:999 216 | 58.18.223.211:9002 217 | 81.36.77.152:80 218 | 159.196.31.104:3128 219 | 200.125.170.126:8080 220 | 146.59.147.70:8888 221 | 155.138.132.50:80 222 | 117.54.114.99:80 223 | 190.121.239.194:999 224 | 94.45.74.60:8080 225 | 117.74.65.207:1337 226 | 140.0.80.246:8080 227 | 185.216.116.18:80 228 | 122.116.150.2:9000 229 | 46.161.195.101:1981 230 | 105.112.95.133:8080 231 | 183.230.162.122:9091 232 | 103.155.166.81:8181 233 | 103.228.246.41:3131 234 | 117.74.65.207:82 235 | 180.191.252.236:8081 236 | 36.93.133.170:8080 237 | 117.74.65.207:1311 238 | 103.162.51.117:8080 239 | 109.194.22.61:8080 240 | 117.74.65.215:10101 241 | 117.74.65.215:11080 242 | 190.82.105.123:43949 243 | 41.65.55.10:1976 244 | 185.143.42.54:9991 245 | 102.68.79.69:8080 246 | 202.154.18.13:8080 247 | 187.216.93.20:55443 248 | 183.88.128.249:8080 249 | 119.196.168.205:80 250 | 200.8.180.118:999 251 | 23.88.63.221:8080 252 | 45.5.118.43:999 253 | 58.27.59.249:80 254 | 117.74.65.215:8080 255 | 190.119.81.83:999 256 | 210.17.255.58:8080 257 | 172.104.117.89:80 258 | 187.60.219.4:3128 259 | 103.141.109.237:8080 260 | 103.241.206.29:3129 261 | 213.108.127.130:8080 262 | 39.108.230.16:3128 263 | 183.233.179.122:9091 264 | 117.74.65.207:17328 265 | 36.91.6.106:4480 266 | 103.155.217.105:41410 267 | 188.132.222.22:8080 268 | 34.146.64.228:3128 269 | 200.110.105.69:999 270 | 185.200.38.195:8080 271 | 59.48.218.218:9091 272 | 75.119.129.192:3128 273 | 195.181.152.71:3128 274 | 117.160.250.163:8080 275 | 152.136.227.216:8443 276 | 20.99.187.69:8443 277 | 103.144.18.94:8083 278 | 110.185.164.20:9091 279 | 117.160.250.163:81 280 | 117.74.65.215:8083 281 | 117.74.65.215:6969 282 | 117.74.65.215:8060 283 | 154.236.191.46:1976 284 | 218.89.51.167:9091 285 | 111.40.124.221:9091 286 | 94.100.26.202:80 287 | 185.104.192.65:80 288 | 45.156.29.129:9090 289 | 117.74.65.207:9443 290 | 153.101.67.170:9002 291 | 162.223.94.163:80 292 | 47.74.64.65:80 293 | 137.74.65.101:80 294 | 103.176.116.34:84 295 | 202.154.18.108:3127 296 | 77.235.19.2:8080 297 | 47.74.64.65:82 298 | 47.74.64.65:2080 299 | 192.99.208.7:8050 300 | 185.82.139.1:443 301 | 200.123.15.250:999 302 | 117.74.65.215:10804 303 | 201.71.2.93:999 304 | 45.71.185.242:999 305 | 167.172.238.15:9979 306 | 51.68.43.49:3128 307 | 117.74.65.207:8181 308 | 117.74.65.215:6379 309 | 103.149.195.33:32650 310 | 51.79.50.31:9300 311 | 47.113.230.224:21531 312 | 45.70.221.22:18080 313 | 117.74.65.207:2375 314 | 201.77.109.129:999 315 | 51.79.148.110:8080 316 | 41.65.251.85:1981 317 | 109.72.109.210:8080 318 | 80.80.211.110:8080 319 | 122.155.165.191:3128 320 | 183.221.242.107:8443 321 | 198.199.86.11:3128 322 | 170.231.55.142:999 323 | 103.165.126.66:8080 324 | 64.225.4.12:9995 325 | 117.74.65.207:1080 326 | 202.103.203.97:9091 327 | 64.225.8.118:9998 328 | 181.129.251.147:8080 329 | 180.184.91.187:443 330 | 40.119.236.22:80 331 | 213.171.63.210:41890 332 | 117.74.65.215:3128 333 | 93.171.225.190:80 334 | 41.65.236.48:1981 335 | 154.212.7.252:999 336 | 190.116.56.74:999 337 | 60.6.237.112:9002 338 | 117.74.65.207:10001 339 | 61.19.145.66:8080 340 | 117.160.250.133:80 341 | 51.79.50.22:9300 342 | 64.225.4.12:9980 343 | 117.160.250.131:8899 344 | 45.201.134.38:8080 345 | 47.106.170.211:8080 346 | 101.68.17.40:8085 347 | 14.177.176.137:80 348 | 109.111.251.158:6666 349 | 117.74.65.215:2000 350 | 41.188.149.75:80 351 | 182.16.12.30:8088 352 | 117.160.250.130:80 353 | 109.236.84.72:48283 354 | 45.229.205.190:55555 355 | 20.69.79.158:8443 356 | 123.182.59.84:8089 357 | 103.243.114.206:8080 358 | 58.57.170.150:9002 359 | 111.40.62.176:9091 360 | 39.170.42.90:9091 361 | 47.113.230.224:59394 362 | 185.200.37.98:8080 363 | 103.163.134.4:8181 364 | 202.162.105.202:80 365 | 167.99.131.11:80 366 | 31.146.216.246:8080 367 | 8.219.176.202:8080 368 | 5.180.181.26:8888 369 | 78.20.209.210:443 370 | 103.159.46.34:84 371 | 188.132.221.24:8080 372 | 106.75.86.143:1080 373 | 182.16.12.28:8088 374 | 222.127.51.132:8082 375 | 103.76.151.133:8181 376 | 179.95.203.179:8081 377 | 202.137.3.209:3888 378 | 209.97.150.167:3128 379 | 179.1.91.49:999 380 | 123.182.58.72:8089 381 | 100.21.80.30:80 382 | 186.151.95.57:999 383 | 13.126.133.88:80 384 | 47.56.110.204:8989 385 | 116.113.68.130:9091 386 | 124.71.157.181:10 387 | 187.1.57.206:20183 388 | 64.225.4.29:9489 389 | 183.215.172.2:9091 390 | 203.243.63.16:80 391 | 89.237.21.119:3128 392 | 117.74.65.215:10243 393 | 102.68.85.187:80 394 | 39.185.232.150:9091 395 | 185.162.251.76:80 396 | 120.79.86.123:80 397 | 221.10.250.51:9091 398 | 103.154.90.190:8080 399 | 183.165.248.119:8089 400 | 221.6.215.202:9091 401 | 139.59.1.14:3128 402 | 103.169.132.82:3127 403 | 64.225.8.118:9983 404 | 222.127.255.21:9999 405 | 45.229.129.54:999 406 | 117.74.65.215:999 407 | 123.157.233.138:9091 408 | 103.140.109.93:8080 409 | 111.225.153.97:8089 410 | 103.156.17.39:8181 411 | 20.241.236.196:3128 412 | 116.206.56.142:8080 413 | 187.86.133.125:3128 414 | 23.236.65.130:45787 415 | 37.57.15.43:33761 416 | 110.34.3.229:3128 417 | 117.160.250.130:8899 418 | 103.159.46.25:83 419 | 43.243.140.194:8080 420 | 211.138.173.110:9091 421 | 64.225.4.12:9981 422 | 179.1.192.41:999 423 | 103.227.192.47:8111 424 | 60.175.244.38:9002 425 | 117.74.65.215:10021 426 | 103.180.194.146:8080 427 | 95.216.196.32:30001 428 | 111.68.26.237:8080 429 | 208.79.8.81:9080 430 | 45.229.33.218:999 431 | 218.57.210.186:9002 432 | 47.108.118.128:8888 433 | 117.139.124.182:9091 434 | 156.200.116.74:1976 435 | 143.137.132.1:8999 436 | 117.74.65.215:10007 437 | 103.156.233.175:3125 438 | 94.75.76.10:8080 439 | 216.74.255.182:8080 440 | 177.207.208.35:8080 441 | 190.254.0.110:999 442 | 201.220.112.98:999 443 | 41.65.236.35:1981 444 | 181.129.20.235:999 445 | 183.165.245.122:8089 446 | 93.185.74.214:8088 447 | 103.247.217.17:8080 448 | 92.84.56.10:50782 449 | 146.56.129.222:80 450 | 172.232.75.123:80 451 | 167.172.238.15:9992 452 | 23.144.56.65:80 453 | 165.227.81.188:9993 454 | 124.71.157.181:111 455 | 191.96.31.183:80 456 | 92.253.235.170:8082 457 | 103.141.142.153:41411 458 | 65.108.230.239:45731 459 | 193.106.109.195:80 460 | 64.225.4.81:9992 461 | 117.74.65.215:10494 462 | 93.105.40.62:41258 463 | 185.15.244.162:80 464 | 189.90.241.194:8080 465 | 117.74.65.215:8090 466 | 223.94.85.131:9091 467 | 124.105.180.29:8082 468 | 117.74.65.215:84 469 | 64.225.4.29:9865 470 | 190.110.99.189:999 471 | 200.82.188.28:999 472 | 183.64.115.112:9091 473 | 124.131.219.94:9091 474 | 117.74.65.215:10011 475 | 8.210.127.228:8888 476 | 68.183.185.62:80 477 | 117.160.250.163:8828 478 | 217.251.108.48:8080 479 | 102.223.20.217:80 480 | 103.167.109.209:80 481 | 197.246.212.70:3030 482 | 120.224.180.41:9002 483 | 193.3.20.13:80 484 | 102.38.17.101:8080 485 | 36.66.218.13:8080 486 | 210.172.199.88:8080 487 | 41.65.163.86:1976 488 | 177.86.30.141:8080 489 | 124.90.210.47:8085 490 | 114.255.132.60:3128 491 | 117.74.65.215:81 492 | 182.23.35.242:8080 493 | 162.240.76.92:80 494 | 165.227.81.188:9982 495 | 117.74.65.215:1000 496 | 202.162.105.202:8000 497 | 117.74.65.215:1080 498 | 103.240.187.36:8080 499 | 121.132.95.7:80 500 | 103.167.15.117:82 501 | 117.74.65.215:30001 502 | 172.245.154.147:3128 503 | 167.250.51.20:999 504 | 111.225.152.99:8089 505 | 162.55.47.78:8080 506 | 170.245.132.86:999 507 | 41.33.66.229:1981 508 | 118.173.247.205:8080 509 | 194.186.127.60:80 510 | 109.111.212.78:8080 511 | 186.30.167.139:999 512 | 117.159.15.99:9091 513 | 117.74.65.215:9080 514 | 80.191.162.4:514 515 | 200.106.184.14:999 516 | 104.225.220.233:80 517 | 157.254.193.91:80 518 | 179.49.117.226:999 519 | 45.229.205.250:55555 520 | 46.201.89.18:8080 521 | 211.97.2.196:9002 522 | 103.141.142.153:41416 523 | 103.215.207.38:83 524 | 187.188.167.108:8080 525 | 5.17.6.83:8080 526 | 84.204.40.155:8080 527 | 14.53.144.77:80 528 | 198.69.13.254:9090 529 | 103.87.212.141:8080 530 | 201.71.2.122:999 531 | 64.225.8.82:9994 532 | 179.49.157.10:999 533 | 138.2.79.142:3128 534 | 191.98.179.21:3128 535 | 47.99.96.187:80 536 | 103.139.47.170:8080 537 | 65.108.230.239:40893 538 | 120.197.40.219:9002 539 | 121.22.53.166:9091 540 | 95.140.152.88:3128 541 | 117.74.65.215:8499 542 | 103.138.251.72:8080 543 | 183.165.250.216:8089 544 | 196.216.65.57:8080 545 | 181.191.223.58:999 546 | 121.41.48.76:3128 547 | 200.106.184.97:999 548 | 103.175.99.167:80 549 | 118.99.73.202:8080 550 | 64.225.4.29:9814 551 | 64.226.97.46:8080 552 | 178.75.53.156:80 553 | 45.229.205.99:55555 554 | 45.174.172.200:999 555 | 85.192.165.18:8080 556 | 62.201.223.8:8188 557 | 194.113.153.223:8080 558 | 101.255.166.134:1111 559 | 117.74.65.215:9090 560 | 120.89.90.230:80 561 | 191.7.8.199:80 562 | 202.166.220.176:8080 563 | 201.150.118.42:999 564 | 168.181.196.76:8080 565 | 117.74.65.215:9443 566 | 66.70.197.194:8050 567 | 84.254.0.86:32650 568 | 91.244.115.221:48080 569 | 130.149.242.201:80 570 | 102.38.6.225:8080 571 | 103.155.217.105:41401 572 | 181.174.224.61:999 573 | 117.74.65.215:11666 574 | 111.8.226.108:9091 575 | 60.12.168.114:9002 576 | 36.93.2.50:8080 577 | 186.96.2.89:999 578 | 119.76.142.208:8080 579 | 187.72.98.156:8080 580 | 161.97.156.201:80 581 | 182.253.112.194:8080 582 | 117.102.76.250:8080 583 | 221.193.240.115:9091 584 | 47.254.244.107:3128 585 | 177.87.168.49:53281 586 | 202.72.220.83:8080 587 | 64.225.4.12:9993 588 | 111.225.153.236:8089 589 | 139.59.233.24:3128 590 | 103.90.156.248:8080 591 | 58.20.248.139:9002 592 | 222.180.240.62:9091 593 | 117.69.237.140:8089 594 | 103.48.68.108:83 595 | 58.57.170.154:9002 596 | 45.226.11.1:888 597 | 103.122.66.237:8085 598 | 85.236.170.146:80 599 | 201.184.107.26:999 600 | 38.44.237.59:999 601 | 103.159.195.139:8080 602 | 119.205.109.198:8888 603 | 5.78.92.135:50001 604 | 164.52.206.180:80 605 | 103.106.193.41:7532 606 | 103.170.97.14:8080 607 | 118.107.44.181:80 608 | 123.182.58.198:8089 609 | 117.74.65.215:20000 610 | 180.183.155.157:8080 611 | 182.253.140.250:8080 612 | 81.29.245.176:3128 613 | 118.186.17.243:39665 614 | 186.159.6.164:1994 615 | 103.6.8.20:32650 616 | 121.204.139.6:3128 617 | 177.93.33.113:999 618 | 117.74.65.215:11336 619 | 5.78.73.197:8080 620 | 165.227.81.188:9998 621 | 46.47.197.210:3128 622 | 41.33.66.252:1981 623 | 103.86.200.177:32650 624 | 61.175.214.2:9091 625 | 91.243.192.17:3128 626 | 101.255.165.217:8080 627 | 182.48.204.35:8080 628 | 43.138.138.164:8080 629 | 139.255.61.166:443 630 | 45.229.205.232:55551 631 | 180.191.22.240:8082 632 | 117.74.65.215:41890 633 | 124.158.175.26:8080 634 | 103.248.120.5:8080 635 | 211.138.6.37:9091 636 | 207.246.112.27:999 637 | 121.37.203.216:2019 638 | 117.74.65.215:8082 639 | 103.159.47.9:82 640 | 8.242.179.76:999 641 | 190.145.147.139:999 642 | 110.44.169.100:4444 643 | 185.226.134.8:9090 644 | 201.187.103.18:8080 645 | 65.20.223.242:8080 646 | 190.61.41.106:999 647 | 190.113.41.201:999 648 | 174.138.167.180:8888 649 | 46.219.80.142:57401 650 | 45.229.205.112:55551 651 | 191.37.55.182:8989 652 | 38.9.141.79:8080 653 | 183.233.169.226:9091 654 | 82.99.206.165:8080 655 | 211.161.103.139:9091 656 | 5.78.92.68:50001 657 | 171.35.164.62:8085 658 | 61.183.234.226:9091 659 | 65.108.230.239:44321 660 | 111.225.152.92:8089 661 | 186.227.49.186:3128 662 | 39.165.0.137:9002 663 | 34.76.73.21:80 664 | 113.23.237.130:8888 665 | 129.151.160.199:80 666 | 221.153.92.39:80 667 | 196.1.97.209:80 668 | 64.225.4.12:9970 669 | 121.37.203.216:9091 670 | 59.57.50.114:9091 671 | 47.91.56.120:2080 672 | 202.150.151.138:4995 673 | 103.153.185.226:8080 674 | 111.8.226.107:9091 675 | 180.168.191.195:9002 676 | 123.183.162.9:9002 677 | 164.132.170.100:80 678 | 116.0.61.122:3128 679 | 103.111.118.68:1080 680 | 110.74.203.250:8080 681 | 143.198.182.218:80 682 | 122.3.41.154:8090 683 | 182.253.181.255:8080 684 | 188.132.222.137:8080 685 | 177.126.41.224:45005 686 | 101.255.117.198:8085 687 | 31.222.98.47:3128 688 | 37.148.217.234:999 689 | 41.65.227.115:1981 690 | 142.11.222.22:80 691 | 185.108.141.49:8080 692 | 64.225.8.118:9980 693 | 103.155.62.158:8080 694 | 103.156.249.113:8181 695 | 222.129.138.90:9000 696 | 112.16.127.69:9002 697 | 64.225.4.29:9497 698 | 179.49.117.19:999 699 | 112.194.142.135:9091 700 | 64.225.4.12:9960 701 | 200.110.105.72:999 702 | 45.10.70.252:45787 703 | 43.230.158.66:32650 704 | 165.227.81.188:9965 705 | 103.124.114.178:32650 706 | 156.200.116.74:1981 707 | 120.236.79.139:9002 708 | 118.31.2.38:8999 709 | 187.141.184.235:8080 710 | 35.203.0.3:80 711 | 194.67.91.153:80 712 | 36.89.245.65:8080 713 | 210.22.131.162:9002 714 | 182.106.220.252:9091 715 | 80.84.176.110:8080 716 | 24.51.32.59:8080 717 | 114.231.45.124:8089 718 | 128.199.202.122:3128 719 | 43.251.116.117:45787 720 | 103.154.230.105:5678 721 | 95.141.130.45:8080 722 | 194.29.101.140:3128 723 | 189.90.248.174:9999 724 | 61.216.156.222:60808 725 | 38.56.70.97:999 726 | 62.205.169.74:53281 727 | 179.43.140.249:3128 728 | 124.70.202.161:8090 729 | 20.230.230.59:3128 730 | 128.140.10.215:8080 731 | 222.190.208.239:8089 732 | 64.225.8.82:9989 733 | 109.194.101.128:3128 734 | 103.141.142.102:41367 735 | 148.76.97.250:80 736 | 123.182.58.112:8089 737 | 94.154.152.12:8079 738 | 41.242.116.150:50001 739 | 114.4.233.34:8080 740 | 114.129.19.139:8080 741 | 158.69.212.254:80 742 | 89.208.105.195:4555 743 | 8.242.150.92:999 744 | 103.169.43.235:55443 745 | 20.239.171.216:80 746 | 186.215.87.194:10342 747 | 162.240.75.37:80 748 | 81.12.44.197:3129 749 | 183.165.250.56:8089 750 | 45.189.112.1:999 751 | 154.236.191.51:1976 752 | 120.196.188.21:9091 753 | 81.134.57.82:3128 754 | 157.100.56.178:999 755 | 87.246.54.221:8888 756 | 185.200.36.174:8080 757 | 187.102.209.245:999 758 | 58.57.170.146:9002 759 | 103.159.220.141:80 760 | 200.116.198.180:32605 761 | 38.10.179.195:999 762 | 103.104.193.22:8080 763 | 117.160.250.163:80 764 | 103.159.96.190:3127 765 | 38.83.74.2:3128 766 | 116.197.129.49:8181 767 | 138.117.84.168:8080 768 | 94.102.203.2:1500 769 | 197.232.47.122:8080 770 | 217.146.217.178:3128 771 | 220.248.70.237:9002 772 | 188.32.241.34:81 773 | 85.132.29.134:8080 774 | 210.22.161.86:9002 775 | 156.67.217.159:80 776 | 201.71.2.224:999 777 | 174.138.167.182:8888 778 | 216.122.181.252:999 779 | 103.210.57.243:80 780 | 223.27.144.35:8080 781 | 160.119.135.210:3129 782 | 179.51.125.152:999 783 | 209.126.6.159:80 784 | 103.156.248.150:8080 785 | 186.96.141.208:3128 786 | 5.255.97.172:3128 787 | 89.217.59.77:80 788 | 109.236.84.72:35147 789 | 24.152.49.226:999 790 | 201.22.56.210:3128 791 | 167.71.199.211:38427 792 | 117.160.250.163:8081 793 | 64.225.4.81:9976 794 | 103.171.31.127:8080 795 | 38.10.69.102:9090 796 | 64.225.8.118:9976 797 | 167.172.238.15:9985 798 | 51.75.4.237:3128 799 | 104.43.230.151:3128 800 | 222.124.219.202:80 801 | 121.31.35.98:9091 802 | 210.75.50.242:9002 803 | 139.190.235.84:8080 804 | 182.16.171.65:43188 805 | 103.167.134.31:80 806 | 103.155.217.52:41367 807 | 200.105.215.22:33630 808 | 123.182.59.81:8089 809 | 202.154.191.234:9933 810 | 167.172.238.15:9991 811 | 188.132.221.4:8080 812 | 45.71.185.241:999 813 | 181.174.228.35:999 814 | 80.82.55.71:80 815 | 203.142.77.226:8080 816 | 23.94.216.233:5000 817 | 47.253.71.33:9091 818 | 8.208.85.34:8118 819 | 157.100.56.94:999 820 | 87.248.171.0:49650 821 | 41.65.227.98:1981 822 | 113.143.37.82:9002 823 | 150.129.5.230:8080 824 | 183.165.226.144:8089 825 | 103.116.203.245:43520 826 | 202.110.67.141:9091 827 | 165.16.46.1:8080 828 | 8.208.85.34:5555 829 | 85.173.112.192:46810 830 | 120.202.128.112:9002 831 | 175.178.151.52:8080 832 | 177.136.86.229:999 833 | 131.255.137.51:80 834 | 64.225.4.12:9971 835 | 223.247.47.219:8089 836 | 103.83.232.122:80 837 | 117.160.250.163:9999 838 | 102.68.131.113:8080 839 | 87.237.239.95:3128 840 | 200.123.29.35:3128 841 | 119.51.61.22:8085 842 | 176.193.117.178:8989 843 | 95.183.140.89:80 844 | 179.48.11.6:8085 845 | 167.172.238.15:9986 846 | 185.103.87.30:8081 847 | 89.22.239.228:3128 848 | 188.190.40.44:8080 849 | 99.45.137.21:3128 850 | 140.206.62.198:9002 851 | 138.0.207.40:9292 852 | 5.187.9.10:8080 853 | 187.120.175.1:999 854 | 122.165.157.39:8080 855 | 111.225.152.255:8089 856 | 169.239.86.69:8080 857 | 38.83.74.2:443 858 | 160.119.148.190:8080 859 | 111.47.170.136:9091 860 | 64.225.8.118:9977 861 | 43.250.172.82:45787 862 | 221.121.12.238:36077 863 | 158.69.71.245:9300 864 | 31.220.183.217:53281 865 | 117.251.103.186:8080 866 | 41.86.252.91:443 867 | 41.254.54.63:8080 868 | 120.234.135.251:9002 869 | 142.93.223.219:8080 870 | 47.253.71.33:4118 871 | 185.82.98.73:9093 872 | 36.94.58.28:4480 873 | 167.172.172.234:35287 874 | 123.231.230.58:39365 875 | 102.38.22.32:8080 876 | 95.183.140.94:80 877 | 103.141.142.153:41407 878 | 220.248.238.26:9091 879 | 203.232.43.236:8001 880 | 188.43.228.25:8080 881 | 113.204.239.90:8081 882 | 186.0.171.217:8080 883 | 170.210.71.29:7070 884 | 185.237.98.113:8081 885 | 178.33.3.163:8080 886 | 103.121.149.69:8080 887 | 18.163.96.231:80 888 | 103.141.142.153:41413 889 | 103.155.217.105:41411 890 | 103.102.14.147:2020 891 | 65.109.161.106:8080 892 | 183.230.198.80:9091 893 | 193.15.14.198:80 894 | 188.163.170.130:41209 895 | 183.239.62.59:9091 896 | 185.33.170.233:9999 897 | 36.34.159.90:9091 898 | 210.22.77.94:9002 899 | 195.140.146.247:3128 900 | 211.97.2.197:9002 901 | 54.243.30.23:80 902 | 174.138.167.178:8888 903 | 172.245.248.4:3128 904 | 167.172.238.15:9956 905 | 181.238.40.29:8080 906 | 101.128.79.172:32650 907 | 167.172.238.15:9982 908 | 65.108.230.239:46434 909 | 103.152.232.134:8080 910 | 181.65.139.237:999 911 | 64.225.8.82:9980 912 | 138.68.235.51:80 913 | 51.75.7.103:3128 914 | 112.11.242.201:9091 915 | 85.117.56.147:8080 916 | 65.108.69.40:10046 917 | 200.123.29.45:3128 918 | 103.118.124.137:6969 919 | 177.54.229.1:9292 920 | 212.12.24.57:8090 921 | 37.26.86.206:47464 922 | 34.86.56.41:8080 923 | 64.225.4.12:9999 924 | 109.224.51.30:8080 925 | 174.138.167.181:8888 926 | 179.42.78.49:999 927 | 112.124.38.70:3128 928 | 41.65.227.103:1976 929 | 187.49.191.17:999 930 | 212.16.71.187:80 931 | 111.40.62.199:9091 932 | 192.154.253.67:8123 933 | 89.43.10.141:80 934 | 190.2.213.114:999 935 | 83.171.90.83:8080 936 | 35.193.239.194:3128 937 | 85.133.235.171:8080 938 | 36.66.19.10:8080 939 | 45.188.164.13:1994 940 | 47.100.24.141:8443 941 | 103.144.181.74:3000 942 | 120.197.219.82:9091 943 | 118.163.13.200:8080 944 | 103.253.154.155:48319 945 | 41.65.163.85:1981 946 | 91.194.239.122:8080 947 | 183.238.32.234:9002 948 | 47.51.51.190:8080 949 | 146.59.2.185:80 950 | 123.231.221.180:8080 951 | 223.205.138.151:8080 952 | 196.27.106.112:8080 953 | 191.97.14.26:999 954 | 120.37.177.50:9091 955 | 200.192.243.46:9546 956 | 43.240.101.89:8080 957 | 157.245.97.60:80 958 | 204.83.205.117:3128 959 | 120.234.203.171:9002 960 | 195.133.45.149:7788 961 | 158.69.63.57:3128 962 | 106.105.115.204:80 963 | 101.132.195.179:9991 964 | 91.214.31.234:8080 965 | 117.160.250.133:8899 966 | 112.98.177.27:9091 967 | 103.114.52.22:8080 968 | 180.235.65.13:80 969 | 121.54.191.245:45787 970 | 183.221.242.111:8443 971 | 111.20.217.178:9091 972 | 191.96.164.152:999 973 | 61.53.66.116:9091 974 | 128.140.6.139:8080 975 | 64.225.8.118:9992 976 | 129.158.192.111:3128 977 | 38.49.131.104:999 978 | 190.119.81.84:999 979 | 200.123.29.41:3128 980 | 125.129.57.91:80 981 | 200.215.250.67:999 982 | 113.204.239.90:8090 983 | 152.169.106.145:80 984 | 103.122.60.245:8080 985 | 85.93.41.25:3128 986 | 189.164.20.248:10101 987 | 190.61.97.229:999 988 | 191.102.254.12:8085 989 | 188.116.173.198:3128 990 | 111.225.152.98:8089 991 | 47.98.219.185:8999 992 | 120.79.7.173:8888 993 | 209.141.54.136:5555 994 | 209.97.166.109:4444 995 | 117.159.37.40:9091 996 | 23.229.21.138:3128 997 | 118.71.66.50:32650 998 | 103.188.10.114:8080 999 | 200.187.70.223:3128 1000 | 85.172.0.30:8080 1001 | 45.79.17.203:80 1002 | 123.182.59.184:8089 1003 | 14.143.231.22:8080 1004 | 113.161.131.43:80 1005 | 45.7.66.253:999 1006 | 60.214.128.150:9091 1007 | 112.26.81.142:9091 1008 | 47.103.113.219:18081 1009 | 103.118.46.174:8080 1010 | 187.17.163.223:92 1011 | 47.100.201.85:80 1012 | 103.173.139.1:8080 1013 | 54.37.105.157:8080 1014 | 113.195.167.51:8085 1015 | 112.2.34.99:9091 1016 | 41.254.41.94:8080 1017 | 218.13.24.130:9002 1018 | 8.219.97.248:80 1019 | 167.71.5.83:3128 1020 | 223.210.2.228:9091 1021 | 123.154.28.83:8085 1022 | 49.12.4.154:8080 1023 | 41.65.236.35:1976 1024 | 92.60.190.74:8080 1025 | 5.78.42.62:50001 1026 | 120.79.34.201:80 1027 | 38.7.131.251:999 1028 | 182.253.79.20:3128 1029 | 103.179.182.185:8181 1030 | 176.88.55.195:8080 1031 | 60.210.40.190:9091 1032 | 103.162.205.88:8080 1033 | 103.144.221.218:8080 1034 | 64.225.8.82:9977 1035 | 4.16.68.158:443 1036 | 41.65.236.37:1976 1037 | 117.160.250.134:80 1038 | 45.5.119.146:999 1039 | 223.247.47.50:8089 1040 | 195.3.246.209:3128 1041 | 110.138.111.24:8080 1042 | 45.229.206.8:55551 1043 | 13.95.173.197:80 1044 | 138.121.113.164:999 1045 | 117.160.132.37:9091 1046 | 113.57.84.39:9091 1047 | 223.207.96.29:8080 1048 | 187.19.166.107:20183 1049 | 138.117.231.130:999 1050 | 103.87.168.192:32650 1051 | 85.235.184.186:3129 1052 | 188.132.222.50:8080 1053 | 42.63.10.170:9002 1054 | 103.229.185.154:8080 1055 | 58.245.97.48:8085 1056 | 61.9.53.106:1337 1057 | 218.28.98.229:9091 1058 | 103.118.46.176:8080 1059 | 168.196.105.29:41890 1060 | 94.102.235.118:32650 1061 | 167.71.205.47:8080 1062 | 23.132.185.101:53128 1063 | 123.182.59.218:8089 1064 | 46.175.1.65:8080 1065 | 162.223.94.164:80 1066 | 103.6.177.174:8002 1067 | 83.171.114.92:45822 1068 | 123.159.127.130:8085 1069 | 103.7.27.186:8080 1070 | 38.52.222.250:999 1071 | 47.113.219.226:8060 1072 | 45.70.237.33:8888 1073 | 188.132.222.45:8080 1074 | 103.146.196.24:8080 1075 | 58.20.235.231:9002 1076 | 181.176.211.168:8080 1077 | 103.10.58.205:8080 1078 | 178.128.59.21:80 1079 | 138.68.60.8:3128 1080 | 181.10.160.157:8080 1081 | 178.93.151.99:8080 1082 | 111.21.183.58:9091 1083 | 94.233.39.70:8081 1084 | 200.106.184.129:999 1085 | 200.123.15.251:999 1086 | 47.95.254.71:80 1087 | 103.76.12.42:80 1088 | 115.29.151.41:10443 1089 | 103.36.11.118:3125 1090 | 176.37.21.46:41890 1091 | 118.31.2.38:8998 1092 | 103.194.88.107:32650 1093 | 103.118.78.194:80 1094 | 117.160.250.138:8899 1095 | 64.225.8.118:9989 1096 | 198.49.68.80:80 1097 | 76.67.49.249:8118 1098 | 103.170.115.222:2020 1099 | 45.224.22.117:999 1100 | 138.2.81.32:8090 1101 | 61.160.212.99:8111 1102 | 80.241.251.54:8080 1103 | 181.65.133.242:999 1104 | 103.154.230.129:8080 1105 | 37.148.217.35:999 1106 | 116.107.245.166:3333 1107 | 91.241.21.237:9812 1108 | 64.225.4.12:9996 1109 | 43.143.131.58:7890 1110 | 120.82.174.128:9091 1111 | 187.109.37.53:20183 1112 | 182.16.12.27:8088 1113 | 122.50.6.186:8080 1114 | 171.22.25.170:80 1115 | 14.140.131.82:3128 1116 | 140.246.114.169:59394 1117 | 134.209.108.182:8888 1118 | 47.98.219.185:8998 1119 | 61.133.66.69:9002 1120 | 112.54.41.177:9091 1121 | 114.4.233.45:8080 1122 | 92.27.165.234:80 1123 | 212.33.238.17:8111 1124 | 188.132.222.4:8080 1125 | 23.94.59.157:3128 1126 | 202.141.235.34:41890 1127 | 183.89.149.85:8080 1128 | 117.160.250.138:80 1129 | 182.16.12.29:8088 1130 | 213.6.141.17:19000 1131 | 115.144.102.39:10080 1132 | 62.89.9.10:8080 1133 | 209.97.150.167:8080 1134 | 113.50.66.19:9091 1135 | 41.93.71.15:80 1136 | 43.229.148.70:8080 1137 | 103.145.200.10:6969 1138 | 120.26.123.95:8010 1139 | 62.193.108.130:1981 1140 | 111.225.153.249:8089 1141 | 62.193.108.142:1976 1142 | 212.127.88.225:8080 1143 | 178.153.12.169:8080 1144 | 39.101.65.228:1000 1145 | 118.31.23.24:8080 1146 | 200.123.29.40:3128 1147 | 122.9.21.228:8000 1148 | 125.165.31.200:8080 1149 | 39.101.65.228:10000 1150 | 190.111.209.207:3128 1151 | 113.195.5.93:8085 1152 | 117.159.10.124:9002 1153 | 154.118.228.212:80 1154 | 117.160.250.163:82 1155 | 117.74.65.29:8020 1156 | 82.165.184.53:80 1157 | 167.172.238.15:9998 1158 | 5.78.88.247:8080 1159 | 45.71.184.239:999 1160 | 195.140.146.225:3128 1161 | 120.37.121.209:9091 1162 | 139.196.151.191:60489 1163 | 198.199.86.11:8080 1164 | 152.228.206.188:80 1165 | 182.23.211.121:80 1166 | 200.63.107.118:8089 1167 | 138.68.60.8:8080 1168 | 117.74.65.29:1081 1169 | 58.246.58.150:9002 1170 | 117.69.232.112:8089 1171 | 118.107.44.181:8000 1172 | 5.206.236.154:8080 1173 | 43.252.11.194:8080 1174 | 111.225.152.168:8089 1175 | 47.74.71.208:3128 1176 | 195.178.56.32:8080 1177 | 103.54.80.189:8085 1178 | 51.75.7.90:3128 1179 | 54.80.188.7:8118 1180 | 185.74.6.247:80 1181 | 202.131.159.226:1111 1182 | 51.195.80.220:443 1183 | 103.160.207.45:32650 1184 | 117.158.146.215:9091 1185 | 201.30.192.149:8080 1186 | 190.19.114.104:8080 1187 | 186.0.144.131:92 1188 | 220.87.121.155:80 1189 | 41.74.20.169:8080 1190 | 111.225.152.65:8089 1191 | 123.182.58.240:8089 1192 | 177.54.229.164:9292 1193 | 84.248.46.187:80 1194 | 49.249.155.3:80 1195 | 139.59.1.14:8080 1196 | 103.145.200.4:6969 1197 | 112.198.179.67:8080 1198 | 121.199.76.2:8080 1199 | 45.124.184.13:80 1200 | 177.93.253.5:4444 1201 | 111.40.116.212:9091 1202 | 167.172.238.15:9972 1203 | 41.65.236.56:1981 1204 | 222.74.73.202:42055 1205 | 89.117.32.209:80 1206 | 51.75.206.209:80 1207 | 170.244.209.114:999 1208 | 36.66.7.36:8080 1209 | 180.180.123.40:8080 1210 | 36.134.91.82:8888 1211 | 200.8.121.41:999 1212 | 117.74.65.29:443 1213 | 37.148.217.32:999 1214 | 124.13.181.6:80 1215 | 196.219.202.74:8080 1216 | 216.137.184.253:80 1217 | 190.110.99.187:999 1218 | 124.202.159.99:3128 1219 | 118.34.105.254:8080 1220 | 62.201.218.82:8080 1221 | 117.74.65.29:5001 1222 | 34.87.103.220:80 1223 | 103.130.70.201:83 1224 | 154.236.189.20:1976 1225 | 117.74.65.29:8083 1226 | 181.78.85.39:999 1227 | 191.252.193.160:8888 1228 | 118.97.36.18:8080 1229 | 36.95.15.149:8080 1230 | 51.75.5.237:3128 1231 | 12.88.29.66:9080 1232 | 213.6.150.117:9999 1233 | 120.194.4.157:5443 1234 | 188.166.213.190:4444 1235 | 113.223.214.58:8089 1236 | 182.50.65.169:8080 1237 | 14.241.111.38:8080 1238 | 58.20.184.187:9091 1239 | 182.16.12.26:8088 1240 | 40.117.254.183:80 1241 | 113.195.207.249:9091 1242 | 163.177.106.4:8001 1243 | 78.25.123.69:3128 1244 | 185.132.250.140:8080 1245 | 113.208.119.142:9002 1246 | 182.253.181.130:8080 1247 | 117.74.65.29:3127 1248 | 79.116.42.161:80 1249 | 103.247.21.101:1080 1250 | 36.89.212.252:8080 1251 | 102.0.2.246:32650 1252 | 103.117.192.14:80 1253 | 64.225.4.12:9986 1254 | 103.65.193.200:32650 1255 | 59.59.163.213:8089 1256 | 123.245.249.158:8089 1257 | 223.215.176.37:8089 1258 | 183.165.247.46:8089 1259 | 114.231.8.103:8089 1260 | 95.217.210.191:8080 1261 | 174.138.184.82:33495 1262 | 123.245.249.185:8089 1263 | 161.35.214.127:38645 1264 | 183.165.249.48:8089 1265 | 183.165.248.145:8089 1266 | 200.110.105.65:999 1267 | 114.233.70.154:9000 1268 | 103.170.115.223:2020 1269 | 114.233.70.64:9000 1270 | 103.47.173.169:8080 1271 | 114.232.109.209:8089 1272 | 125.79.192.68:8089 1273 | 168.11.52.41:8080 1274 | 27.157.203.177:8089 1275 | 94.74.163.218:80 1276 | 103.145.45.6:55443 1277 | 120.34.231.89:8089 1278 | 200.30.138.54:3128 1279 | 190.30.227.13:8080 1280 | 41.76.216.250:8088 1281 | 27.157.247.198:8089 1282 | 103.105.76.183:8080 1283 | 95.217.213.211:8080 1284 | 5.78.94.225:8080 1285 | 112.78.38.167:8080 1286 | 123.163.52.24:9091 1287 | 140.237.158.25:8089 1288 | 95.216.141.108:8080 1289 | 103.151.237.42:8080 1290 | 176.98.234.124:8080 1291 | 102.68.135.135:8080 1292 | 103.131.19.31:8085 1293 | 183.165.227.173:8089 1294 | 123.245.250.11:8089 1295 | 203.202.255.67:8080 1296 | 183.165.245.245:8089 1297 | 183.165.250.150:8089 1298 | 222.190.208.207:8089 1299 | 103.134.220.49:3125 1300 | 36.67.45.71:8080 1301 | 223.247.46.115:8089 1302 | 27.157.228.3:8089 1303 | 165.90.225.15:3389 1304 | 43.249.11.34:45787 1305 | 183.165.251.49:8089 1306 | 5.78.95.86:8080 1307 | 190.217.10.12:999 1308 | 103.181.168.218:8080 1309 | 147.185.255.79:8000 1310 | 43.251.117.123:45787 1311 | 174.138.184.82:34399 1312 | 103.130.197.196:80 1313 | 222.78.194.184:8089 1314 | 183.165.248.198:8089 1315 | 183.165.249.127:8089 1316 | 117.92.125.219:8089 1317 | 65.21.251.129:8080 1318 | 121.233.227.123:8089 1319 | 103.174.181.127:1080 1320 | 223.215.176.151:8089 1321 | 183.165.250.4:8089 1322 | 114.239.198.251:8089 1323 | 41.188.149.73:80 1324 | 114.231.45.37:8089 1325 | 103.112.253.169:32650 1326 | 117.54.114.96:80 1327 | 84.241.57.219:8080 1328 | 114.95.146.139:8118 1329 | 131.196.178.53:999 1330 | 187.190.249.114:1994 1331 | 117.54.114.97:80 1332 | 60.246.156.193:80 1333 | 103.152.9.150:80 1334 | 117.54.114.33:80 1335 | 103.152.9.139:80 1336 | 103.36.10.143:3125 1337 | 181.65.128.140:999 1338 | 103.114.10.250:8080 1339 | 198.44.188.57:45787 1340 | 188.82.97.82:80 1341 | 45.237.185.17:999 1342 | 190.186.18.161:999 1343 | 95.217.129.104:8080 1344 | 103.154.230.109:5678 1345 | 146.83.118.9:80 1346 | 183.165.251.56:8089 1347 | 65.108.63.174:8080 1348 | 155.93.89.67:80 1349 | 183.165.246.197:8089 1350 | 183.165.247.58:8089 1351 | 103.153.40.38:8080 1352 | 103.159.195.221:8080 1353 | 102.68.128.215:8080 1354 | 183.165.249.25:8089 1355 | 222.190.215.156:8089 1356 | 27.111.46.74:80 1357 | 110.232.67.42:55443 1358 | 103.155.198.70:8080 1359 | 45.225.184.18:999 1360 | 38.9.56.73:8080 1361 | 102.68.128.218:8080 1362 | 103.75.199.142:8080 1363 | 103.66.196.218:23500 1364 | 114.233.71.254:9000 1365 | 103.140.142.201:32650 1366 | 38.158.92.59:8080 1367 | 95.67.79.254:8080 1368 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmohacker/Spotify-Follower-Bot/38501dc17ec2d07987621e9f9f6eaadd106bc0db/requirements.txt --------------------------------------------------------------------------------