Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 65.53 KB | None | 0 0
  1. import socket
  2. import struct
  3. import random
  4. import threading
  5.  
  6. class SABot:
  7. def __init__(self, Username, Password, IP, Port):
  8. self.NullByte = struct.pack('B', 0)
  9. self.BufSize = 4096
  10. self.CommandChar = '$'
  11. self.InLobby = False
  12. self.OnlineUsers = {}
  13. self.OnlineUserMap = {}
  14. self.Dead = []
  15.  
  16. self.NameToIP = {'2D Central': '74.86.43.9:1138', 'Paper Thin City': '74.86.43.8:1138', 'Fine Line Island': '198.58.106.101:1138', 'U of SA': '69.164.207.72:1138',
  17. 'Amsterdam': '139.162.151.57:1138', 'Mobius Metro': '45.56.72.83:1138', 'Cartesian': '198.58.106.101:1139'}
  18.  
  19. self.IPToName = {'74.86.43.9:1138': '2D Central', '74.86.43.8:1138': 'Paper Thin City', '198.58.106.101:1138': 'Fine Line Island', '69.164.207.72:1138': 'U of SA',
  20. '139.162.151.57:1138': 'Amsterdam', '45.56.72.83:1138': 'Mobius Metro', '198.58.106.101:1139': 'Cartesian'}
  21.  
  22. self.ServerIP = IP
  23. self.ServerPort = Port
  24. self.Commands = True
  25. self.BotServer = self.IPToName[ '{}:{}'.format(self.ServerIP, self.ServerPort)]
  26. self.BotPassword = Password
  27.  
  28. self.connectToServer(Username, Password, self.ServerIP, self.ServerPort)
  29.  
  30. def sendPacket(self, Socket, PacketData, Receive = False):
  31. Packet = bytes(PacketData, 'utf-8')
  32.  
  33. if Socket:
  34. Socket.send(Packet + self.NullByte)
  35.  
  36. if Receive:
  37. return Socket.recv(self.BufSize).decode('utf-8')
  38.  
  39. def startKeepAlive(self, TimerSeconds = 20):
  40. if hasattr(self, 'SocketConn'):
  41. KeepAliveTimer = threading.Timer(TimerSeconds, self.startKeepAlive)
  42. KeepAliveTimer.daemon = True
  43. KeepAliveTimer.start()
  44.  
  45. self.sendPacket(self.SocketConn, '0')
  46.  
  47. def sendPrivateMessage(self, UserID, Message):
  48. if UserID != self.BotID:
  49. if UserID in self.OnlineUsers:
  50. self.sendPacket(self.SocketConn, '00' + UserID + 'P' + Message)
  51.  
  52. def sendPublicMessage(self, Message):
  53. self.sendPacket(self.SocketConn, '9' + Message)
  54.  
  55. def connectionHandler(self):
  56. Buffer = b''
  57.  
  58. while hasattr(self, 'SocketConn'):
  59. try:
  60. Buffer += self.SocketConn.recv(self.BufSize)
  61. except ConnectionAbortedError:
  62. return
  63.  
  64. if len(Buffer) == 0:
  65. print('{} has disconnected'.format(self.BotUsername))
  66. self.SocketConn.shutdown(socket.SHUT_RD)
  67. self.SocketConn.close()
  68.  
  69. break
  70. elif Buffer.endswith(self.NullByte):
  71. Receive = Buffer.split(self.NullByte)
  72. Buffer = b''
  73.  
  74. for Data in Receive:
  75. Data = Data.decode('utf-8')
  76.  
  77. if Data.startswith('U'):
  78. UserID = Data[1:][:3]
  79. Username = Data[4:][:20].replace('#', '')
  80.  
  81. self.parseUserData(Data)
  82. elif Data.startswith('D'):
  83. UserID = Data[1:][:3]
  84. Username = self.OnlineUsers[UserID]
  85.  
  86. del self.OnlineUserMap[Username]
  87. del self.OnlineUsers[UserID]
  88. elif Data.startswith('M'):
  89. UserID = Data[1:][:3]
  90.  
  91. self.parseUserMessage(UserID, Data)
  92. elif Data.startswith('0g') or Data.startswith('0j'):
  93. print('{{Server}}: {}'.format(Data[2:]))
  94. elif Data.startswith('0f') or Data.startswith('0e'):
  95. Time, Reason = Data[2:].split(';')
  96. print('This account has just been banned [Time: {} / Reason: {}]'.format(Time, Reason))
  97.  
  98. def connectToServer(self, Username, Password, ServerIP, ServerPort):
  99. try:
  100. self.SocketConn = socket.create_connection((self.ServerIP, self.ServerPort))
  101. except Exception as Error:
  102. print(Error)
  103. return
  104.  
  105. Handshake = self.sendPacket(self.SocketConn, '08HxO9TdCC62Nwln1P', True).strip(self.NullByte.decode('utf-8'))
  106.  
  107. if Handshake == '08':
  108. Credentials = '09{};{}'.format(Username, Password)
  109. RawData = self.sendPacket(self.SocketConn, Credentials, True).split(self.NullByte.decode('utf-8'))
  110.  
  111. for Data in RawData:
  112. if Data.startswith('A'):
  113. self.InLobby = True
  114. self.BotID = Data[1:][:3]
  115. self.BotUsername = Data[4:][:20].replace('#', '')
  116. self.BotCred = Data[43:].split(';')[8]
  117.  
  118. print('Bot Username: {} | Bot ID: {} | Bot Cred: {} | Located in {}'.format(self.BotID, self.BotUsername, self.BotCred, self.BotServer))
  119.  
  120. EntryPackets = ['02Z900_', '03_', '0a', '01']
  121.  
  122. for Packet in EntryPackets:
  123. self.sendPacket(self.SocketConn, Packet)
  124.  
  125. self.startKeepAlive()
  126. ConnectionThread = threading.Thread(target=self.connectionHandler)
  127. ConnectionThread.start()
  128. break
  129. elif Data == '09':
  130. print('Incorrect password')
  131. break
  132. elif Data == '091':
  133. print('Currently banned')
  134. break
  135. else:
  136. print('Server capacity check failed')
  137.  
  138. def parseUserData(self, Packet, Password = None):
  139. StatsString = Packet.replace('\x00', '')
  140. UserID = StatsString[1:][:3]
  141. Type = StatsString[:1]
  142.  
  143. if Type == 'U':
  144. if self.InLobby == True:
  145. Username = StatsString[4:][:20].replace('#', '')
  146. StatsString = StatsString[24:]
  147.  
  148. self.OnlineUsers[UserID] = Username
  149. self.OnlineUserMap[Username] = UserID
  150. else:
  151. Username = StatsString[9:][:20].replace('#', '')
  152.  
  153. self.OnlineUsers[UserID] = Username
  154. self.OnlineUserMap[Username] = UserID
  155.  
  156. def parseUserMessage(self, SenderID, Packet):
  157. if SenderID in self.OnlineUsers:
  158. Sender = self.OnlineUsers[SenderID]
  159.  
  160. NoUseTypes = ['1', '2', '4', '5', '6', '7', '8', '~']
  161. MessageType = Packet[4:][:1]
  162. SenderMessage = Packet[5:]
  163. RawMessage = Packet[1:].replace(SenderID, '')
  164.  
  165. if MessageType in NoUseTypes:
  166. return
  167. elif MessageType == '9':
  168. if self.Commands:
  169. self.handleCommand(SenderID, Sender, SenderMessage, False)
  170. elif MessageType == 'P':
  171. if self.Commands:
  172. self.handleCommand(SenderID, Sender, SenderMessage, True)
  173. else:
  174. self.handleCommand(SenderID, Sender, RawMessage, True)
  175.  
  176. try:
  177. print('[' + Sender + ']: ' + RawMessage)
  178. except:
  179. pass
  180.  
  181. def handleCommand(self, SenderID, Sender, SenderMessage, Private):
  182. RespondByPM = (False if Private == False else True)
  183. Message = SenderMessage.strip()
  184. MessageCheck = Message.split()
  185.  
  186. if Message.startswith(self.CommandChar):
  187. Command = MessageCheck[0][1:].lower()
  188. HasArguments = (True if len(MessageCheck) > 1 else False)
  189. Arguments = (' '.join(MessageCheck[1:]) if HasArguments else None)
  190.  
  191. if Command == 'reset':
  192. RespondByPM = True
  193. self.Dead = []
  194. self.BotAdmin = None
  195.  
  196. Response = 'RR list has been reset.'
  197. elif Command == 'users':
  198. RespondByPM = True
  199. UserList = []
  200.  
  201. for User in self.OnlineUserMap:
  202. UserList .append(User)
  203.  
  204. Response = 'There are {} people in the lobby. Users: {}'.format(len(UserList), ', '.join(UserList))
  205. elif Command == 'addcol' or Command == 'getcol':
  206. RespondByPM = True
  207.  
  208. if Private:
  209. if HasArguments:
  210. SpinnerType = Arguments.split()[0]
  211. RGB = Arguments.split()[1]
  212. Password = Arguments.replace(' ', '')[12:]
  213. Response = 'Color hackin aint cool but I don\'t give a fuck'
  214.  
  215. ColorRequest = threading.Thread(target=self.handleColorRequest, args=(SenderID, Sender, SpinnerType, RGB, Password))
  216. ColorRequest.daemon = True
  217. ColorRequest.start()
  218. elif Command == 'rr':
  219. if Sender not in self.Dead:
  220. GoodNumber = random.randint(0, 2)
  221. BadNumber = random.randint(0, 2)
  222.  
  223. if GoodNumber == BadNumber:
  224. self.Dead.append(Sender)
  225. Response = 'Bang'.format(Sender)
  226. else:
  227. Response = 'Click'.format(Sender)
  228.  
  229. if Command == 'blacklist':
  230. RespondByPM = True
  231.  
  232. if HasArguments:
  233. Target = Arguments.replace(' ', '').lower()
  234. Username = Sender
  235.  
  236. Results = self.executeDatabaseQuery("SELECT * FROM blacklist WHERE username = ?", [(Username)], False, True)
  237.  
  238. if Results:
  239. if Target == 'color':
  240. Blacklisted = Results[0][1]
  241.  
  242. if Blacklisted:
  243. self.executeDatabaseQuery("UPDATE blacklist SET color = 0 WHERE username = ?", [(Username)])
  244. Response = 'Your color codes can now be publicly requested.'
  245. else:
  246. self.executeDatabaseQuery("UPDATE blacklist SET color = 1 WHERE username = ?", [(Username)])
  247. Response = 'Your color codes can no longer be publicly requested.'
  248. elif Target == 'location':
  249. Blacklisted = Results[0][2]
  250.  
  251. if Blacklisted:
  252. self.executeDatabaseQuery("UPDATE blacklist SET location = 0 WHERE username = ?", [(Username)])
  253. Response = 'Your location can now be publicly requested.'
  254. else:
  255. self.executeDatabaseQuery("UPDATE blacklist SET location = 1 WHERE username = ?", [(Username)])
  256. Response = 'Your location can no longer be publicly requested.'
  257. else:
  258. Username = Sender
  259.  
  260. Results = self.executeDatabaseQuery("SELECT * FROM blacklist WHERE username = ?", [(Username)], False, True)
  261.  
  262. if Results:
  263. ColorBlacklisted = Results[0][1]
  264. LocationBlacklisted = Results[0][2]
  265.  
  266. if ColorBlacklisted:
  267. ColorBlacklisted = 0
  268. self.executeDatabaseQuery("UPDATE blacklist SET color = 0 WHERE username = ?", [(Username)])
  269. else:
  270. ColorBlacklisted = 1
  271. self.executeDatabaseQuery("UPDATE blacklist SET color = 1 WHERE username = ?", [(Username)])
  272.  
  273. if LocationBlacklisted:
  274. LocationBlacklisted = 0
  275. self.executeDatabaseQuery("UPDATE blacklist SET location = 0 WHERE username = ?", [(Username)])
  276. else:
  277. LocationBlacklisted = 1
  278. self.executeDatabaseQuery("UPDATE blacklist SET location = 1 WHERE username = ?", [(Username)])
  279.  
  280. ColorBlacklisted = ('Your color codes can no longer be publicly requested' if ColorBlacklisted else 'Your color codes can be publicly requested')
  281. LocationBlacklisted = ('Your location can no longer be publicly requested' if LocationBlacklisted else 'Your location can be publicly requested')
  282.  
  283. Response = '{}; {}'.format(ColorBlacklisted, LocationBlacklisted)
  284. elif Command == 'hex' or Command == 'rgb':
  285. RespondByPM = True
  286.  
  287. if HasArguments:
  288. Arguments = Arguments.replace(' ', '')
  289. Target = Arguments
  290. else:
  291. Target = Sender
  292.  
  293. Results = self.executeDatabaseQuery("SELECT * FROM blacklist WHERE lower(username) = ?", [(Target.lower())], False, True)
  294.  
  295. if Results:
  296. Username = Results[0][0]
  297. Blacklisted = Results[0][1]
  298. else:
  299. Username = Target
  300. Blacklisted = 0
  301.  
  302. Results = self.executeDatabaseQuery("SELECT * FROM users WHERE lower(username) = ?", [(Username.lower())], False, True)
  303.  
  304. if Results:
  305. RGB = Results[0][1]
  306. Hex = Results[0][2]
  307.  
  308. if Sender.lower() == Username.lower():
  309. BlacklistCheck = ('blacklisted.' if Blacklisted else 'not blacklisted.')
  310. Response = 'Your color codes: [RGB]: {} | [Hex]: {} / You are {}'.format(RGB, Hex, BlacklistCheck)
  311. else:
  312. if Blacklisted:
  313. if Sender == self.BotAdmin:
  314. Response = '[Blacklisted] {}\'s color codes: [RGB]: {} | [Hex]: {}'.format(Username, RGB, Hex)
  315. else:
  316. Response = '{} isn\'t allowing requests for their color.'.format(Username)
  317. else:
  318. Response = '{}\'s color codes: [RGB]: {} | [Hex]: {}'.format(Username, RGB, Hex)
  319.  
  320. else:
  321. Response = 'There are currently no color codes stored for "{}"'.format(Target)
  322. elif Command == 'say':
  323. if HasArguments:
  324. RespondByPM = False
  325. Response = Arguments
  326. if Private and not Sender == self.botAdmin:
  327. RespondByPM = True
  328. if not Private:
  329. Response = Arguments
  330. else:
  331. if Sender == 'syst.err':
  332. Response = Arguments
  333. Response = 'Nice try squid'
  334.  
  335. elif Command == 'mud':
  336. Response = 'muddy shit goin down'.format(Sender)
  337.  
  338. elif Command == 'congrats':
  339. if HasArguments:
  340. Response = 'Congratulations on Your new rank, {}!'.format(Arguments.split()[0])
  341.  
  342. elif Command == 'muddy':
  343. Response = 'so muddy'.format(Sender)
  344.  
  345. elif Command == 'pspam':
  346. Response = '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%'.format(Sender)
  347.  
  348. elif Command == 'fuckmods':
  349. Response = 'fuck mods and there pussy ass shit'.format(Sender)
  350.  
  351. elif Command == 'carlos':
  352. Response = 'that bitch a power hungry nnniiiggggaaaa'.format(Sender)
  353.  
  354. elif Command == 'luis':
  355. Response = 'i think he 12 cuz he sure acts like it'.format(Sender)
  356.  
  357. elif Command == 'krux':
  358. Response = 'that nigga aint done nothin to me'.format(Sender)
  359.  
  360. elif Command == 'lawjax':
  361. Response = 'i wear color hacked spinners infront of him'.format(Sender)
  362.  
  363. elif Command == 'kendry':
  364. Response = 'nigga be a bitch when it comes to unbanning on forums'.format(Sender)
  365.  
  366. elif Command == 'sin':
  367. Response = 'he ight'.format(Sender)
  368.  
  369. elif Command == 'ava':
  370. Response = 'nigga be to busy playin wit sin hard to meet dat mod'.format(Sender)
  371.  
  372. elif Command == 'getmoney':
  373. Response = 'he cool i guess nigga needs to come online more'.format(Sender)
  374.  
  375. elif Command == 'shot':
  376. Response = 'hit him up for color hacks'.format(Sender)
  377.  
  378. if 'Response' in locals():
  379. if Private:
  380. print('[PM from {} in {}] Response: {}'.format(Sender, self.BotServer, Response))
  381. else:
  382. print('[{} in {}] Response: {}'.format(Sender, self.BotServer, Response))
  383.  
  384. if RespondByPM:
  385. self.sendPrivateMessage(SenderID, Response)
  386. else:
  387. self.sendPublicMessage(Response)
  388.  
  389. def handleColorRequest(self, SenderID, Sender, SpinnerType, RGB, Password):
  390. SocketConn = socket.create_connection((self.ServerIP, self.ServerPort))
  391. Handshake = self.sendPacket(SocketConn, '08HxO9TdCC62Nwln1P', True).strip(self.NullByte.decode('utf-8'))
  392.  
  393. if Handshake == '08':
  394. Credentials = '09{};{}'.format(Sender, Password)
  395. RawData = self.sendPacket(SocketConn, Credentials, True)
  396.  
  397. for Data in RawData:
  398. if Data.startswith('A'):
  399. self.sendPacket(SocketConn, '02Z900_')
  400. self.sendPacket(SocketConn, '03_')
  401.  
  402. self.sendPacket(SocketConn, '0b' + SpinnerType + RGB + RGB)
  403. elif Data == '09':
  404. SentMessage = False
  405.  
  406. while not SentMessage:
  407. if SenderID in self.OnlineUsers:
  408. SentMessage = True
  409. self.sendPrivateMessage(SenderID, 'Incorrect password')
  410. break
  411.  
  412. break
  413.  
  414. SocketConn.shutdown(socket.SHUT_RD)
  415. SocketConn.close()
  416. del SocketConn
  417.  
  418. if __name__ == '__main__':
  419. Username = 'fuckcarlos'
  420. Password = '123'
  421.  
  422. SABot(Username, Password, '74.86.43.9', 1138)
  423.  
  424. if __name__ == '__main__':
  425. Username = 'fuckcarlos1'
  426. Password = '123'
  427.  
  428. SABot(Username, Password, '74.86.43.9', 1138)
  429.  
  430. if __name__ == '__main__':
  431. Username = 'fuckcarlos2'
  432. Password = '123'
  433.  
  434. SABot(Username, Password, '74.86.43.9', 1138)
  435.  
  436. if __name__ == '__main__':
  437. Username = 'fuckcarlos3'
  438. Password = '123'
  439.  
  440. SABot(Username, Password, '74.86.43.9', 1138)
  441.  
  442. if __name__ == '__main__':
  443. Username = 'fuckcarlos4'
  444. Password = '123'
  445.  
  446. SABot(Username, Password, '74.86.43.9', 1138)
  447.  
  448. if __name__ == '__main__':
  449. Username = 'fuckcarlos5'
  450. Password = '123'
  451.  
  452. SABot(Username, Password, '74.86.43.9', 1138)
  453.  
  454. if __name__ == '__main__':
  455. Username = 'fuckcarlos6'
  456. Password = '123'
  457.  
  458. SABot(Username, Password, '74.86.43.9', 1138)
  459.  
  460. if __name__ == '__main__':
  461. Username = 'fuckcarlos7'
  462. Password = '123'
  463.  
  464. SABot(Username, Password, '74.86.43.9', 1138)
  465.  
  466. if __name__ == '__main__':
  467. Username = 'fuckcarlos8'
  468. Password = '123'
  469.  
  470. SABot(Username, Password, '74.86.43.9', 1138)
  471.  
  472. if __name__ == '__main__':
  473. Username = 'fuckcarlos9'
  474. Password = '123'
  475.  
  476. SABot(Username, Password, '74.86.43.9', 1138)
  477.  
  478. if __name__ == '__main__':
  479. Username = 'fuckcarlos10'
  480. Password = '123'
  481.  
  482. SABot(Username, Password, '74.86.43.9', 1138)
  483.  
  484. if __name__ == '__main__':
  485. Username = 'fuckcarlos11'
  486. Password = '123'
  487.  
  488. SABot(Username, Password, '74.86.43.9', 1138)
  489.  
  490. if __name__ == '__main__':
  491. Username = 'fuckcarlos12'
  492. Password = '123'
  493.  
  494. SABot(Username, Password, '74.86.43.9', 1138)
  495.  
  496. if __name__ == '__main__':
  497. Username = 'fuckcarlos13'
  498. Password = '123'
  499.  
  500. SABot(Username, Password, '74.86.43.9', 1138)
  501.  
  502. if __name__ == '__main__':
  503. Username = 'fuckcarlos14'
  504. Password = '123'
  505.  
  506. SABot(Username, Password, '74.86.43.9', 1138)
  507.  
  508. if __name__ == '__main__':
  509. Username = 'fuckcarlos15'
  510. Password = '123'
  511.  
  512. SABot(Username, Password, '74.86.43.9', 1138)
  513.  
  514. if __name__ == '__main__':
  515. Username = 'fuckcarlos16'
  516. Password = '123'
  517.  
  518. SABot(Username, Password, '74.86.43.9', 1138)
  519.  
  520. if __name__ == '__main__':
  521. Username = 'fuckcarlos17'
  522. Password = '123'
  523.  
  524. SABot(Username, Password, '74.86.43.9', 1138)
  525.  
  526. if __name__ == '__main__':
  527. Username = 'fuckcarlos18'
  528. Password = '123'
  529.  
  530. SABot(Username, Password, '74.86.43.9', 1138)
  531.  
  532. if __name__ == '__main__':
  533. Username = 'fuckcarlos19'
  534. Password = '123'
  535.  
  536. SABot(Username, Password, '74.86.43.9', 1138)
  537.  
  538. if __name__ == '__main__':
  539. Username = 'fuckcarlos20'
  540. Password = '123'
  541.  
  542. SABot(Username, Password, '74.86.43.9', 1138)
  543.  
  544. if __name__ == '__main__':
  545. Username = 'fuckcarlos21'
  546. Password = '123'
  547.  
  548. SABot(Username, Password, '74.86.43.9', 1138)
  549.  
  550. if __name__ == '__main__':
  551. Username = 'fuckcarlos22'
  552. Password = '123'
  553.  
  554. SABot(Username, Password, '74.86.43.9', 1138)
  555.  
  556. if __name__ == '__main__':
  557. Username = 'fuckcarlos23'
  558. Password = '123'
  559.  
  560. SABot(Username, Password, '74.86.43.9', 1138)
  561.  
  562. if __name__ == '__main__':
  563. Username = 'fuckcarlos24'
  564. Password = '123'
  565.  
  566. SABot(Username, Password, '74.86.43.9', 1138)
  567.  
  568. if __name__ == '__main__':
  569. Username = 'fuckcarlos25'
  570. Password = '123'
  571.  
  572. SABot(Username, Password, '74.86.43.9', 1138)
  573.  
  574. if __name__ == '__main__':
  575. Username = 'fuckcarlos26'
  576. Password = '123'
  577.  
  578. SABot(Username, Password, '74.86.43.9', 1138)
  579.  
  580. if __name__ == '__main__':
  581. Username = 'fuckcarlos27'
  582. Password = '123'
  583.  
  584. SABot(Username, Password, '74.86.43.9', 1138)
  585.  
  586. if __name__ == '__main__':
  587. Username = 'fuckcarlos28'
  588. Password = '123'
  589.  
  590. SABot(Username, Password, '74.86.43.9', 1138)
  591.  
  592. if __name__ == '__main__':
  593. Username = 'fuckcarlos30'
  594. Password = '123'
  595.  
  596. SABot(Username, Password, '74.86.43.9', 1138)
  597.  
  598. if __name__ == '__main__':
  599. Username = 'fuckcarlos31'
  600. Password = '123'
  601.  
  602. SABot(Username, Password, '74.86.43.9', 1138)
  603.  
  604. if __name__ == '__main__':
  605. Username = 'fuckcarlos32'
  606. Password = '123'
  607.  
  608. SABot(Username, Password, '74.86.43.9', 1138)
  609.  
  610. if __name__ == '__main__':
  611. Username = 'fuckcarlos33'
  612. Password = '123'
  613.  
  614. SABot(Username, Password, '74.86.43.9', 1138)
  615.  
  616. if __name__ == '__main__':
  617. Username = 'fuckcarlos34'
  618. Password = '123'
  619.  
  620. SABot(Username, Password, '74.86.43.9', 1138)
  621.  
  622. if __name__ == '__main__':
  623. Username = 'fuckcarlos35'
  624. Password = '123'
  625.  
  626. SABot(Username, Password, '74.86.43.9', 1138)
  627.  
  628. if __name__ == '__main__':
  629. Username = 'fuckcarlos36'
  630. Password = '123'
  631.  
  632. SABot(Username, Password, '74.86.43.9', 1138)
  633.  
  634. if __name__ == '__main__':
  635. Username = 'fuckcarlos37'
  636. Password = '123'
  637.  
  638. SABot(Username, Password, '74.86.43.9', 1138)
  639.  
  640. if __name__ == '__main__':
  641. Username = 'fuckcarlos38'
  642. Password = '123'
  643.  
  644. SABot(Username, Password, '74.86.43.9', 1138)
  645.  
  646. if __name__ == '__main__':
  647. Username = 'fuckcarlos39'
  648. Password = '123'
  649.  
  650. SABot(Username, Password, '74.86.43.9', 1138)
  651.  
  652. if __name__ == '__main__':
  653. Username = 'fuckcarlos40'
  654. Password = '123'
  655.  
  656. SABot(Username, Password, '74.86.43.9', 1138)
  657.  
  658. if __name__ == '__main__':
  659. Username = 'fuckcarlos41'
  660. Password = '123'
  661.  
  662. SABot(Username, Password, '74.86.43.9', 1138)
  663.  
  664. if __name__ == '__main__':
  665. Username = 'fuckcarlos42'
  666. Password = '123'
  667.  
  668. SABot(Username, Password, '74.86.43.9', 1138)
  669.  
  670. if __name__ == '__main__':
  671. Username = 'fuckcarlos43'
  672. Password = '123'
  673.  
  674. SABot(Username, Password, '74.86.43.9', 1138)
  675.  
  676. if __name__ == '__main__':
  677. Username = 'fuckcarlos44'
  678. Password = '123'
  679.  
  680. SABot(Username, Password, '74.86.43.9', 1138)
  681.  
  682. if __name__ == '__main__':
  683. Username = 'fuckcarlos45'
  684. Password = '123'
  685.  
  686. SABot(Username, Password, '74.86.43.9', 1138)
  687.  
  688. if __name__ == '__main__':
  689. Username = 'fuckcarlos46'
  690. Password = '123'
  691.  
  692. SABot(Username, Password, '74.86.43.9', 1138)
  693.  
  694. if __name__ == '__main__':
  695. Username = 'fuckcarlos47'
  696. Password = '123'
  697.  
  698. SABot(Username, Password, '74.86.43.9', 1138)
  699.  
  700. if __name__ == '__main__':
  701. Username = 'fuckcarlos48'
  702. Password = '123'
  703.  
  704. SABot(Username, Password, '74.86.43.9', 1138)
  705.  
  706. if __name__ == '__main__':
  707. Username = 'fuckcarlos49'
  708. Password = '123'
  709.  
  710. SABot(Username, Password, '74.86.43.9', 1138)
  711.  
  712. if __name__ == '__main__':
  713. Username = 'fuckcarlos50'
  714. Password = '123'
  715.  
  716. SABot(Username, Password, '74.86.43.9', 1138)
  717.  
  718. if __name__ == '__main__':
  719. Username = 'fuckcarlos51'
  720. Password = '123'
  721.  
  722. SABot(Username, Password, '74.86.43.9', 1138)
  723.  
  724. if __name__ == '__main__':
  725. Username = 'fuckcarlos52'
  726. Password = '123'
  727.  
  728. SABot(Username, Password, '74.86.43.9', 1138)
  729.  
  730. if __name__ == '__main__':
  731. Username = 'fuckcarlos53'
  732. Password = '123'
  733.  
  734. SABot(Username, Password, '74.86.43.9', 1138)
  735.  
  736. if __name__ == '__main__':
  737. Username = 'fuckcarlos54'
  738. Password = '123'
  739.  
  740. SABot(Username, Password, '74.86.43.9', 1138)
  741.  
  742. if __name__ == '__main__':
  743. Username = 'fuckcarlos55'
  744. Password = '123'
  745.  
  746. SABot(Username, Password, '74.86.43.9', 1138)
  747.  
  748. if __name__ == '__main__':
  749. Username = 'fuckcarlos56'
  750. Password = '123'
  751.  
  752. SABot(Username, Password, '74.86.43.9', 1138)
  753.  
  754. if __name__ == '__main__':
  755. Username = 'fuckcarlos57'
  756. Password = '123'
  757.  
  758. SABot(Username, Password, '74.86.43.9', 1138)
  759.  
  760. if __name__ == '__main__':
  761. Username = 'fuckcarlos58'
  762. Password = '123'
  763.  
  764. SABot(Username, Password, '74.86.43.9', 1138)
  765.  
  766. if __name__ == '__main__':
  767. Username = 'fuckcarlos59'
  768. Password = '123'
  769.  
  770. SABot(Username, Password, '74.86.43.9', 1138)
  771.  
  772. if __name__ == '__main__':
  773. Username = 'fuckcarlos60'
  774. Password = '123'
  775.  
  776. SABot(Username, Password, '74.86.43.9', 1138)
  777.  
  778. if __name__ == '__main__':
  779. Username = 'fuckcarlos61'
  780. Password = '123'
  781.  
  782. SABot(Username, Password, '74.86.43.9', 1138)
  783.  
  784. if __name__ == '__main__':
  785. Username = 'fuckcarlos62'
  786. Password = '123'
  787.  
  788. SABot(Username, Password, '74.86.43.9', 1138)
  789.  
  790. if __name__ == '__main__':
  791. Username = 'fuckcarlos63'
  792. Password = '123'
  793.  
  794. SABot(Username, Password, '74.86.43.9', 1138)
  795.  
  796. if __name__ == '__main__':
  797. Username = 'fuckcarlos64'
  798. Password = '123'
  799.  
  800. SABot(Username, Password, '74.86.43.9', 1138)
  801.  
  802. if __name__ == '__main__':
  803. Username = 'fuckcarlos65'
  804. Password = '123'
  805.  
  806. SABot(Username, Password, '74.86.43.9', 1138)
  807.  
  808. if __name__ == '__main__':
  809. Username = 'fuckcarlos66'
  810. Password = '123'
  811.  
  812. SABot(Username, Password, '74.86.43.9', 1138)
  813.  
  814. if __name__ == '__main__':
  815. Username = 'fuckcarlos67'
  816. Password = '123'
  817.  
  818. SABot(Username, Password, '74.86.43.9', 1138)
  819.  
  820. if __name__ == '__main__':
  821. Username = 'fuckcarlos68'
  822. Password = '123'
  823.  
  824. SABot(Username, Password, '74.86.43.9', 1138)
  825.  
  826. if __name__ == '__main__':
  827. Username = 'fuckcarlos69'
  828. Password = '123'
  829.  
  830. SABot(Username, Password, '74.86.43.9', 1138)
  831.  
  832. if __name__ == '__main__':
  833. Username = 'fuckcarlos70'
  834. Password = '123'
  835.  
  836. SABot(Username, Password, '74.86.43.9', 1138)
  837.  
  838. if __name__ == '__main__':
  839. Username = 'fuckcarlos71'
  840. Password = '123'
  841.  
  842. SABot(Username, Password, '74.86.43.9', 1138)
  843.  
  844. if __name__ == '__main__':
  845. Username = 'fuckcarlos72'
  846. Password = '123'
  847.  
  848. SABot(Username, Password, '74.86.43.9', 1138)
  849.  
  850. if __name__ == '__main__':
  851. Username = 'fuckcarlos73'
  852. Password = '123'
  853.  
  854. SABot(Username, Password, '74.86.43.9', 1138)
  855.  
  856. if __name__ == '__main__':
  857. Username = 'fuckcarlos74'
  858. Password = '123'
  859.  
  860. SABot(Username, Password, '74.86.43.9', 1138)
  861.  
  862. if __name__ == '__main__':
  863. Username = 'fuckcarlos75'
  864. Password = '123'
  865.  
  866. SABot(Username, Password, '74.86.43.9', 1138)
  867.  
  868. if __name__ == '__main__':
  869. Username = 'fuckcarlos76'
  870. Password = '123'
  871.  
  872. SABot(Username, Password, '74.86.43.9', 1138)
  873.  
  874. if __name__ == '__main__':
  875. Username = 'fuckcarlos77'
  876. Password = '123'
  877.  
  878. SABot(Username, Password, '74.86.43.9', 1138)
  879.  
  880. if __name__ == '__main__':
  881. Username = 'fuckcarlos78'
  882. Password = '123'
  883.  
  884. SABot(Username, Password, '74.86.43.9', 1138)
  885.  
  886. if __name__ == '__main__':
  887. Username = 'fuckcarlos79'
  888. Password = '123'
  889.  
  890. SABot(Username, Password, '74.86.43.9', 1138)
  891.  
  892. if __name__ == '__main__':
  893. Username = 'fuckcarlos80'
  894. Password = '123'
  895.  
  896. SABot(Username, Password, '74.86.43.9', 1138)
  897.  
  898. if __name__ == '__main__':
  899. Username = 'fuckcarlos81'
  900. Password = '123'
  901.  
  902. SABot(Username, Password, '74.86.43.9', 1138)
  903.  
  904. if __name__ == '__main__':
  905. Username = 'fuckcarlos82'
  906. Password = '123'
  907.  
  908. SABot(Username, Password, '74.86.43.9', 1138)
  909.  
  910. if __name__ == '__main__':
  911. Username = 'fuckcarlos83'
  912. Password = '123'
  913.  
  914. SABot(Username, Password, '74.86.43.9', 1138)
  915.  
  916. if __name__ == '__main__':
  917. Username = 'fuckcarlos84'
  918. Password = '123'
  919.  
  920. SABot(Username, Password, '74.86.43.9', 1138)
  921.  
  922. if __name__ == '__main__':
  923. Username = 'fuckcarlos85'
  924. Password = '123'
  925.  
  926. SABot(Username, Password, '74.86.43.9', 1138)
  927.  
  928. if __name__ == '__main__':
  929. Username = 'fuckcarlos86'
  930. Password = '123'
  931.  
  932. SABot(Username, Password, '74.86.43.9', 1138)
  933.  
  934. if __name__ == '__main__':
  935. Username = 'fuckcarlos87'
  936. Password = '123'
  937.  
  938. SABot(Username, Password, '74.86.43.9', 1138)
  939.  
  940. if __name__ == '__main__':
  941. Username = 'fuckcarlos88'
  942. Password = '123'
  943.  
  944. SABot(Username, Password, '74.86.43.9', 1138)
  945.  
  946. if __name__ == '__main__':
  947. Username = 'fuckcarlos89'
  948. Password = '123'
  949.  
  950. SABot(Username, Password, '74.86.43.9', 1138)
  951.  
  952. if __name__ == '__main__':
  953. Username = 'fuckcarlos90'
  954. Password = '123'
  955.  
  956. SABot(Username, Password, '74.86.43.9', 1138)
  957.  
  958. if __name__ == '__main__':
  959. Username = 'fuckcarlos91'
  960. Password = '123'
  961.  
  962. SABot(Username, Password, '74.86.43.9', 1138)
  963.  
  964. if __name__ == '__main__':
  965. Username = 'fuckcarlos92'
  966. Password = '123'
  967.  
  968. SABot(Username, Password, '74.86.43.9', 1138)
  969.  
  970. if __name__ == '__main__':
  971. Username = 'fuckcarlos93'
  972. Password = '123'
  973.  
  974. SABot(Username, Password, '74.86.43.9', 1138)
  975.  
  976. if __name__ == '__main__':
  977. Username = 'fuckcarlos94'
  978. Password = '123'
  979.  
  980. SABot(Username, Password, '74.86.43.9', 1138)
  981.  
  982. if __name__ == '__main__':
  983. Username = 'fuckcarlos95'
  984. Password = '123'
  985.  
  986. SABot(Username, Password, '74.86.43.9', 1138)
  987.  
  988. if __name__ == '__main__':
  989. Username = 'fuckcarlos96'
  990. Password = '123'
  991.  
  992. SABot(Username, Password, '74.86.43.9', 1138)
  993.  
  994. if __name__ == '__main__':
  995. Username = 'fuckcarlos97'
  996. Password = '123'
  997.  
  998. SABot(Username, Password, '74.86.43.9', 1138)
  999.  
  1000. if __name__ == '__main__':
  1001. Username = 'fuckcarlos98'
  1002. Password = '123'
  1003.  
  1004. SABot(Username, Password, '74.86.43.9', 1138)
  1005.  
  1006. if __name__ == '__main__':
  1007. Username = 'fuckcarlos99'
  1008. Password = '123'
  1009.  
  1010. SABot(Username, Password, '74.86.43.9', 1138)
  1011.  
  1012. if __name__ == '__main__':
  1013. Username = 'fuckcarlos100'
  1014. Password = '123'
  1015.  
  1016. SABot(Username, Password, '74.86.43.9', 1138)
  1017.  
  1018. if __name__ == '__main__':
  1019. Username = 'fuckcarlos101'
  1020. Password = '123'
  1021.  
  1022. SABot(Username, Password, '74.86.43.9', 1138)
  1023.  
  1024. if __name__ == '__main__':
  1025. Username = 'fuckcarlos102'
  1026. Password = '123'
  1027.  
  1028. SABot(Username, Password, '74.86.43.9', 1138)
  1029.  
  1030. if __name__ == '__main__':
  1031. Username = 'fuckcarlos103'
  1032. Password = '123'
  1033.  
  1034. SABot(Username, Password, '74.86.43.9', 1138)
  1035.  
  1036. if __name__ == '__main__':
  1037. Username = 'fuckcarlos104'
  1038. Password = '123'
  1039.  
  1040. SABot(Username, Password, '74.86.43.9', 1138)
  1041.  
  1042. if __name__ == '__main__':
  1043. Username = 'fuckcarlos105'
  1044. Password = '123'
  1045.  
  1046. SABot(Username, Password, '74.86.43.9', 1138)
  1047.  
  1048. if __name__ == '__main__':
  1049. Username = 'fuckcarlos106'
  1050. Password = '123'
  1051.  
  1052. SABot(Username, Password, '74.86.43.9', 1138)
  1053.  
  1054. if __name__ == '__main__':
  1055. Username = 'fuckcarlos107'
  1056. Password = '123'
  1057.  
  1058. SABot(Username, Password, '74.86.43.9', 1138)
  1059.  
  1060. if __name__ == '__main__':
  1061. Username = 'fuckcarlos108'
  1062. Password = '123'
  1063.  
  1064. SABot(Username, Password, '74.86.43.9', 1138)
  1065.  
  1066. if __name__ == '__main__':
  1067. Username = 'fuckcarlos109'
  1068. Password = '123'
  1069.  
  1070. SABot(Username, Password, '74.86.43.9', 1138)
  1071.  
  1072. if __name__ == '__main__':
  1073. Username = 'fuckcarlos110'
  1074. Password = '123'
  1075.  
  1076. SABot(Username, Password, '74.86.43.9', 1138)
  1077.  
  1078. if __name__ == '__main__':
  1079. Username = 'fuckcarlos111'
  1080. Password = '123'
  1081.  
  1082. SABot(Username, Password, '74.86.43.9', 1138)
  1083.  
  1084. if __name__ == '__main__':
  1085. Username = 'fuckcarlos112'
  1086. Password = '123'
  1087.  
  1088. SABot(Username, Password, '74.86.43.9', 1138)
  1089.  
  1090. if __name__ == '__main__':
  1091. Username = 'fuckcarlos113'
  1092. Password = '123'
  1093.  
  1094. SABot(Username, Password, '74.86.43.9', 1138)
  1095.  
  1096. if __name__ == '__main__':
  1097. Username = 'fuckcarlos114'
  1098. Password = '123'
  1099.  
  1100. SABot(Username, Password, '74.86.43.9', 1138)
  1101.  
  1102. if __name__ == '__main__':
  1103. Username = 'fuckcarlos115'
  1104. Password = '123'
  1105.  
  1106. SABot(Username, Password, '74.86.43.9', 1138)
  1107.  
  1108. if __name__ == '__main__':
  1109. Username = 'fuckcarlos116'
  1110. Password = '123'
  1111.  
  1112. SABot(Username, Password, '74.86.43.9', 1138)
  1113.  
  1114. if __name__ == '__main__':
  1115. Username = 'fuckcarlos117'
  1116. Password = '123'
  1117.  
  1118. SABot(Username, Password, '74.86.43.9', 1138)
  1119.  
  1120. if __name__ == '__main__':
  1121. Username = 'fuckcarlos118'
  1122. Password = '123'
  1123.  
  1124. SABot(Username, Password, '74.86.43.9', 1138)
  1125.  
  1126. if __name__ == '__main__':
  1127. Username = 'fuckcarlos119'
  1128. Password = '123'
  1129.  
  1130. SABot(Username, Password, '74.86.43.9', 1138)
  1131.  
  1132. if __name__ == '__main__':
  1133. Username = 'fuckcarlos120'
  1134. Password = '123'
  1135.  
  1136. SABot(Username, Password, '74.86.43.9', 1138)
  1137.  
  1138. if __name__ == '__main__':
  1139. Username = 'fuckcarlos121'
  1140. Password = '123'
  1141.  
  1142. SABot(Username, Password, '74.86.43.9', 1138)
  1143.  
  1144. if __name__ == '__main__':
  1145. Username = 'fuckcarlos122'
  1146. Password = '123'
  1147.  
  1148. SABot(Username, Password, '74.86.43.9', 1138)
  1149.  
  1150. if __name__ == '__main__':
  1151. Username = 'fuckcarlos123'
  1152. Password = '123'
  1153.  
  1154. SABot(Username, Password, '74.86.43.9', 1138)
  1155.  
  1156. if __name__ == '__main__':
  1157. Username = 'fuckcarlos124'
  1158. Password = '123'
  1159.  
  1160. SABot(Username, Password, '74.86.43.9', 1138)
  1161.  
  1162. if __name__ == '__main__':
  1163. Username = 'fuckcarlos125'
  1164. Password = '123'
  1165.  
  1166. SABot(Username, Password, '74.86.43.9', 1138)
  1167.  
  1168. if __name__ == '__main__':
  1169. Username = 'fuckcarlos126'
  1170. Password = '123'
  1171.  
  1172. SABot(Username, Password, '74.86.43.9', 1138)
  1173.  
  1174. if __name__ == '__main__':
  1175. Username = 'fuckcarlos127'
  1176. Password = '123'
  1177.  
  1178. SABot(Username, Password, '74.86.43.9', 1138)
  1179.  
  1180. if __name__ == '__main__':
  1181. Username = 'fuckcarlos128'
  1182. Password = '123'
  1183.  
  1184. SABot(Username, Password, '74.86.43.9', 1138)
  1185.  
  1186. if __name__ == '__main__':
  1187. Username = 'fuckcarlos129'
  1188. Password = '123'
  1189.  
  1190. SABot(Username, Password, '74.86.43.9', 1138)
  1191.  
  1192. if __name__ == '__main__':
  1193. Username = 'fuckcarlos130'
  1194. Password = '123'
  1195.  
  1196. SABot(Username, Password, '74.86.43.9', 1138)
  1197.  
  1198. if __name__ == '__main__':
  1199. Username = 'fuckcarlos131'
  1200. Password = '123'
  1201.  
  1202. SABot(Username, Password, '74.86.43.9', 1138)
  1203.  
  1204. if __name__ == '__main__':
  1205. Username = 'fuckcarlos132'
  1206. Password = '123'
  1207.  
  1208. SABot(Username, Password, '74.86.43.9', 1138)
  1209.  
  1210. if __name__ == '__main__':
  1211. Username = 'fuckcarlos133'
  1212. Password = '123'
  1213.  
  1214. SABot(Username, Password, '74.86.43.9', 1138)
  1215.  
  1216. if __name__ == '__main__':
  1217. Username = 'fuckcarlos134'
  1218. Password = '123'
  1219.  
  1220. SABot(Username, Password, '74.86.43.9', 1138)
  1221.  
  1222. if __name__ == '__main__':
  1223. Username = 'fuckcarlos135'
  1224. Password = '123'
  1225.  
  1226. SABot(Username, Password, '74.86.43.9', 1138)
  1227.  
  1228. if __name__ == '__main__':
  1229. Username = 'fuckcarlos136'
  1230. Password = '123'
  1231.  
  1232. SABot(Username, Password, '74.86.43.9', 1138)
  1233.  
  1234. if __name__ == '__main__':
  1235. Username = 'fuckcarlos137'
  1236. Password = '123'
  1237.  
  1238. SABot(Username, Password, '74.86.43.9', 1138)
  1239.  
  1240. if __name__ == '__main__':
  1241. Username = 'fuckcarlos138'
  1242. Password = '123'
  1243.  
  1244. SABot(Username, Password, '74.86.43.9', 1138)
  1245.  
  1246. if __name__ == '__main__':
  1247. Username = 'fuckcarlos139'
  1248. Password = '123'
  1249.  
  1250. SABot(Username, Password, '74.86.43.9', 1138)
  1251.  
  1252. if __name__ == '__main__':
  1253. Username = 'fuckcarlos140'
  1254. Password = '123'
  1255.  
  1256. SABot(Username, Password, '74.86.43.9', 1138)
  1257.  
  1258. if __name__ == '__main__':
  1259. Username = 'fuckcarlos141'
  1260. Password = '123'
  1261.  
  1262. SABot(Username, Password, '74.86.43.9', 1138)
  1263.  
  1264. if __name__ == '__main__':
  1265. Username = 'fuckcarlos142'
  1266. Password = '123'
  1267.  
  1268. SABot(Username, Password, '74.86.43.9', 1138)
  1269.  
  1270. if __name__ == '__main__':
  1271. Username = 'fuckcarlos143'
  1272. Password = '123'
  1273.  
  1274. SABot(Username, Password, '74.86.43.9', 1138)
  1275.  
  1276. if __name__ == '__main__':
  1277. Username = 'fuckcarlos144'
  1278. Password = '123'
  1279.  
  1280. SABot(Username, Password, '74.86.43.9', 1138)
  1281.  
  1282. if __name__ == '__main__':
  1283. Username = 'fuckcarlos145'
  1284. Password = '123'
  1285.  
  1286. SABot(Username, Password, '74.86.43.9', 1138)
  1287.  
  1288. if __name__ == '__main__':
  1289. Username = 'fuckcarlos146'
  1290. Password = '123'
  1291.  
  1292. SABot(Username, Password, '74.86.43.9', 1138)
  1293.  
  1294. if __name__ == '__main__':
  1295. Username = 'fuckcarlos147'
  1296. Password = '123'
  1297.  
  1298. SABot(Username, Password, '74.86.43.9', 1138)
  1299.  
  1300. if __name__ == '__main__':
  1301. Username = 'fuckcarlos148'
  1302. Password = '123'
  1303.  
  1304. SABot(Username, Password, '74.86.43.9', 1138)
  1305.  
  1306. if __name__ == '__main__':
  1307. Username = 'fuckcarlos149'
  1308. Password = '123'
  1309.  
  1310. SABot(Username, Password, '74.86.43.9', 1138)
  1311.  
  1312. if __name__ == '__main__':
  1313. Username = 'fuckcarlos150'
  1314. Password = '123'
  1315.  
  1316. SABot(Username, Password, '74.86.43.9', 1138)
  1317.  
  1318. if __name__ == '__main__':
  1319. Username = 'fuckcarlos151'
  1320. Password = '123'
  1321.  
  1322. SABot(Username, Password, '74.86.43.9', 1138)
  1323.  
  1324. if __name__ == '__main__':
  1325. Username = 'fuckcarlos152'
  1326. Password = '123'
  1327.  
  1328. SABot(Username, Password, '74.86.43.9', 1138)
  1329.  
  1330. if __name__ == '__main__':
  1331. Username = 'fuckcarlos153'
  1332. Password = '123'
  1333.  
  1334. SABot(Username, Password, '74.86.43.9', 1138)
  1335.  
  1336. if __name__ == '__main__':
  1337. Username = 'fuckcarlos154'
  1338. Password = '123'
  1339.  
  1340. SABot(Username, Password, '74.86.43.9', 1138)
  1341.  
  1342. if __name__ == '__main__':
  1343. Username = 'fuckcarlos155'
  1344. Password = '123'
  1345.  
  1346. SABot(Username, Password, '74.86.43.9', 1138)
  1347.  
  1348. if __name__ == '__main__':
  1349. Username = 'fuckcarlos156'
  1350. Password = '123'
  1351.  
  1352. SABot(Username, Password, '74.86.43.9', 1138)
  1353.  
  1354. if __name__ == '__main__':
  1355. Username = 'fuckcarlos157'
  1356. Password = '123'
  1357.  
  1358. SABot(Username, Password, '74.86.43.9', 1138)
  1359.  
  1360. if __name__ == '__main__':
  1361. Username = 'fuckcarlos158'
  1362. Password = '123'
  1363.  
  1364. SABot(Username, Password, '74.86.43.9', 1138)
  1365.  
  1366. if __name__ == '__main__':
  1367. Username = 'fuckcarlos159'
  1368. Password = '123'
  1369.  
  1370. SABot(Username, Password, '74.86.43.9', 1138)
  1371.  
  1372. if __name__ == '__main__':
  1373. Username = 'fuckcarlos160'
  1374. Password = '123'
  1375.  
  1376. SABot(Username, Password, '74.86.43.9', 1138)
  1377.  
  1378. if __name__ == '__main__':
  1379. Username = 'fuckcarlos161'
  1380. Password = '123'
  1381.  
  1382. SABot(Username, Password, '74.86.43.9', 1138)
  1383.  
  1384. if __name__ == '__main__':
  1385. Username = 'fuckcarlos162'
  1386. Password = '123'
  1387.  
  1388. SABot(Username, Password, '74.86.43.9', 1138)
  1389.  
  1390. if __name__ == '__main__':
  1391. Username = 'fuckcarlos163'
  1392. Password = '123'
  1393.  
  1394. SABot(Username, Password, '74.86.43.9', 1138)
  1395.  
  1396. if __name__ == '__main__':
  1397. Username = 'fuckcarlos164'
  1398. Password = '123'
  1399.  
  1400. SABot(Username, Password, '74.86.43.9', 1138)
  1401.  
  1402. if __name__ == '__main__':
  1403. Username = 'fuckcarlos165'
  1404. Password = '123'
  1405.  
  1406. SABot(Username, Password, '74.86.43.9', 1138)
  1407.  
  1408. if __name__ == '__main__':
  1409. Username = 'fuckcarlos166'
  1410. Password = '123'
  1411.  
  1412. SABot(Username, Password, '74.86.43.9', 1138)
  1413.  
  1414. if __name__ == '__main__':
  1415. Username = 'fuckcarlos167'
  1416. Password = '123'
  1417.  
  1418. SABot(Username, Password, '74.86.43.9', 1138)
  1419.  
  1420. if __name__ == '__main__':
  1421. Username = 'fuckcarlos168'
  1422. Password = '123'
  1423.  
  1424. SABot(Username, Password, '74.86.43.9', 1138)
  1425.  
  1426. if __name__ == '__main__':
  1427. Username = 'fuckcarlos169'
  1428. Password = '123'
  1429.  
  1430. SABot(Username, Password, '74.86.43.9', 1138)
  1431.  
  1432. if __name__ == '__main__':
  1433. Username = 'fuckcarlos170'
  1434. Password = '123'
  1435.  
  1436. SABot(Username, Password, '74.86.43.9', 1138)
  1437.  
  1438. if __name__ == '__main__':
  1439. Username = 'fuckcarlos'
  1440. Password = '123'
  1441.  
  1442. SABot(Username, Password, '74.86.43.9', 1138)
  1443.  
  1444. if __name__ == '__main__':
  1445. Username = 'fuckcarlos171'
  1446. Password = '123'
  1447.  
  1448. SABot(Username, Password, '74.86.43.9', 1138)
  1449.  
  1450. if __name__ == '__main__':
  1451. Username = 'fuckcarlos172'
  1452. Password = '123'
  1453.  
  1454. SABot(Username, Password, '74.86.43.9', 1138)
  1455.  
  1456. if __name__ == '__main__':
  1457. Username = 'fuckcarlos173'
  1458. Password = '123'
  1459.  
  1460. SABot(Username, Password, '74.86.43.9', 1138)
  1461.  
  1462. if __name__ == '__main__':
  1463. Username = 'fuckcarlos174'
  1464. Password = '123'
  1465.  
  1466. SABot(Username, Password, '74.86.43.9', 1138)
  1467.  
  1468. if __name__ == '__main__':
  1469. Username = 'fuckcarlos175'
  1470. Password = '123'
  1471.  
  1472. SABot(Username, Password, '74.86.43.9', 1138)
  1473.  
  1474. if __name__ == '__main__':
  1475. Username = 'fuckcarlos176'
  1476. Password = '123'
  1477.  
  1478. SABot(Username, Password, '74.86.43.9', 1138)
  1479.  
  1480. if __name__ == '__main__':
  1481. Username = 'fuckcarlos177'
  1482. Password = '123'
  1483.  
  1484. SABot(Username, Password, '74.86.43.9', 1138)
  1485.  
  1486. if __name__ == '__main__':
  1487. Username = 'fuckcarlos178'
  1488. Password = '123'
  1489.  
  1490. SABot(Username, Password, '74.86.43.9', 1138)
  1491.  
  1492. if __name__ == '__main__':
  1493. Username = 'fuckcarlos179'
  1494. Password = '123'
  1495.  
  1496. SABot(Username, Password, '74.86.43.9', 1138)
  1497.  
  1498. if __name__ == '__main__':
  1499. Username = 'fuckcarlos180'
  1500. Password = '123'
  1501.  
  1502. SABot(Username, Password, '74.86.43.9', 1138)
  1503.  
  1504. if __name__ == '__main__':
  1505. Username = 'fuckcarlos181'
  1506. Password = '123'
  1507.  
  1508. SABot(Username, Password, '74.86.43.9', 1138)
  1509.  
  1510. if __name__ == '__main__':
  1511. Username = 'fuckcarlos182'
  1512. Password = '123'
  1513.  
  1514. SABot(Username, Password, '74.86.43.9', 1138)
  1515.  
  1516. if __name__ == '__main__':
  1517. Username = 'fuckcarlos183'
  1518. Password = '123'
  1519.  
  1520. SABot(Username, Password, '74.86.43.9', 1138)
  1521.  
  1522. if __name__ == '__main__':
  1523. Username = 'fuckcarlos184'
  1524. Password = '123'
  1525.  
  1526. SABot(Username, Password, '74.86.43.9', 1138)
  1527.  
  1528. if __name__ == '__main__':
  1529. Username = 'fuckcarlos185'
  1530. Password = '123'
  1531.  
  1532. SABot(Username, Password, '74.86.43.9', 1138)
  1533.  
  1534. if __name__ == '__main__':
  1535. Username = 'fuckcarlos186'
  1536. Password = '123'
  1537.  
  1538. SABot(Username, Password, '74.86.43.9', 1138)
  1539.  
  1540. if __name__ == '__main__':
  1541. Username = 'fuckcarlos187'
  1542. Password = '123'
  1543.  
  1544. SABot(Username, Password, '74.86.43.9', 1138)
  1545.  
  1546. if __name__ == '__main__':
  1547. Username = 'fuckcarlos188'
  1548. Password = '123'
  1549.  
  1550. SABot(Username, Password, '74.86.43.9', 1138)
  1551.  
  1552. if __name__ == '__main__':
  1553. Username = 'fuckcarlos189'
  1554. Password = '123'
  1555.  
  1556. SABot(Username, Password, '74.86.43.9', 1138)
  1557.  
  1558. if __name__ == '__main__':
  1559. Username = 'fuckcarlos190'
  1560. Password = '123'
  1561.  
  1562. SABot(Username, Password, '74.86.43.9', 1138)
  1563.  
  1564. if __name__ == '__main__':
  1565. Username = 'fuckcarlos191'
  1566. Password = '123'
  1567.  
  1568. SABot(Username, Password, '74.86.43.9', 1138)
  1569.  
  1570. if __name__ == '__main__':
  1571. Username = 'fuckcarlos192'
  1572. Password = '123'
  1573.  
  1574. SABot(Username, Password, '74.86.43.9', 1138)
  1575.  
  1576. if __name__ == '__main__':
  1577. Username = 'fuckcarlos193'
  1578. Password = '123'
  1579.  
  1580. SABot(Username, Password, '74.86.43.9', 1138)
  1581.  
  1582. if __name__ == '__main__':
  1583. Username = 'fuckcarlos194'
  1584. Password = '123'
  1585.  
  1586. SABot(Username, Password, '74.86.43.9', 1138)
  1587.  
  1588. if __name__ == '__main__':
  1589. Username = 'fuckcarlos195'
  1590. Password = '123'
  1591.  
  1592. SABot(Username, Password, '74.86.43.9', 1138)
  1593.  
  1594. if __name__ == '__main__':
  1595. Username = 'fuckcarlos196'
  1596. Password = '123'
  1597.  
  1598. SABot(Username, Password, '74.86.43.9', 1138)
  1599.  
  1600. if __name__ == '__main__':
  1601. Username = 'fuckcarlos197'
  1602. Password = '123'
  1603.  
  1604. SABot(Username, Password, '74.86.43.9', 1138)
  1605.  
  1606. if __name__ == '__main__':
  1607. Username = 'fuckcarlos198'
  1608. Password = '123'
  1609.  
  1610. SABot(Username, Password, '74.86.43.9', 1138)
  1611.  
  1612. if __name__ == '__main__':
  1613. Username = 'fuckcarlos199'
  1614. Password = '123'
  1615.  
  1616. SABot(Username, Password, '74.86.43.9', 1138)
  1617.  
  1618. if __name__ == '__main__':
  1619. Username = 'fuckcarlos200'
  1620. Password = '123'
  1621.  
  1622. SABot(Username, Password, '74.86.43.9', 1138)
  1623.  
  1624. if __name__ == '__main__':
  1625. Username = 'fuckcarlos201'
  1626. Password = '123'
  1627.  
  1628. SABot(Username, Password, '74.86.43.9', 1138)
  1629.  
  1630. if __name__ == '__main__':
  1631. Username = 'fuckcarlos202'
  1632. Password = '123'
  1633.  
  1634. SABot(Username, Password, '74.86.43.9', 1138)
  1635.  
  1636. if __name__ == '__main__':
  1637. Username = 'fuckcarlos203'
  1638. Password = '123'
  1639.  
  1640. SABot(Username, Password, '74.86.43.9', 1138)
  1641.  
  1642. if __name__ == '__main__':
  1643. Username = 'fuckcarlos'
  1644. Password = '123'
  1645.  
  1646. SABot(Username, Password, '74.86.43.9', 1138)
  1647.  
  1648. if __name__ == '__main__':
  1649. Username = 'fuckcarlos204'
  1650. Password = '123'
  1651.  
  1652. SABot(Username, Password, '74.86.43.9', 1138)
  1653.  
  1654. if __name__ == '__main__':
  1655. Username = 'fuckcarlos205'
  1656. Password = '123'
  1657.  
  1658. SABot(Username, Password, '74.86.43.9', 1138)
  1659.  
  1660. if __name__ == '__main__':
  1661. Username = 'fuckcarlos206'
  1662. Password = '123'
  1663.  
  1664. SABot(Username, Password, '74.86.43.9', 1138)
  1665.  
  1666. if __name__ == '__main__':
  1667. Username = 'fuckcarlos207'
  1668. Password = '123'
  1669.  
  1670. SABot(Username, Password, '74.86.43.9', 1138)
  1671.  
  1672. if __name__ == '__main__':
  1673. Username = 'fuckcarlos208'
  1674. Password = '123'
  1675.  
  1676. SABot(Username, Password, '74.86.43.9', 1138)
  1677.  
  1678. if __name__ == '__main__':
  1679. Username = 'fuckcarlos209'
  1680. Password = '123'
  1681.  
  1682. SABot(Username, Password, '74.86.43.9', 1138)
  1683.  
  1684. if __name__ == '__main__':
  1685. Username = 'fuckcarlos210'
  1686. Password = '123'
  1687.  
  1688. SABot(Username, Password, '74.86.43.9', 1138)
  1689.  
  1690. if __name__ == '__main__':
  1691. Username = 'fuckcarlos211'
  1692. Password = '123'
  1693.  
  1694. SABot(Username, Password, '74.86.43.9', 1138)
  1695.  
  1696. if __name__ == '__main__':
  1697. Username = 'fuckcarlos212'
  1698. Password = '123'
  1699.  
  1700. SABot(Username, Password, '74.86.43.9', 1138)
  1701.  
  1702. if __name__ == '__main__':
  1703. Username = 'fuckcarlos213'
  1704. Password = '123'
  1705.  
  1706. SABot(Username, Password, '74.86.43.9', 1138)
  1707.  
  1708. if __name__ == '__main__':
  1709. Username = 'fuckcarlos214'
  1710. Password = '123'
  1711.  
  1712. SABot(Username, Password, '74.86.43.9', 1138)
  1713.  
  1714. if __name__ == '__main__':
  1715. Username = 'fuckcarlos215'
  1716. Password = '123'
  1717.  
  1718. SABot(Username, Password, '74.86.43.9', 1138)
  1719.  
  1720. if __name__ == '__main__':
  1721. Username = 'fuckcarlos216'
  1722. Password = '123'
  1723.  
  1724. SABot(Username, Password, '74.86.43.9', 1138)
  1725.  
  1726. if __name__ == '__main__':
  1727. Username = 'fuckcarlos217'
  1728. Password = '123'
  1729.  
  1730. SABot(Username, Password, '74.86.43.9', 1138)
  1731.  
  1732. if __name__ == '__main__':
  1733. Username = 'fuckcarlos218'
  1734. Password = '123'
  1735.  
  1736. SABot(Username, Password, '74.86.43.9', 1138)
  1737.  
  1738. if __name__ == '__main__':
  1739. Username = 'fuckcarlos219'
  1740. Password = '123'
  1741.  
  1742. SABot(Username, Password, '74.86.43.9', 1138)
  1743.  
  1744. if __name__ == '__main__':
  1745. Username = 'fuckcarlos220'
  1746. Password = '123'
  1747.  
  1748. SABot(Username, Password, '74.86.43.9', 1138)
  1749.  
  1750. if __name__ == '__main__':
  1751. Username = 'fuckcarlos221'
  1752. Password = '123'
  1753.  
  1754. SABot(Username, Password, '74.86.43.9', 1138)
  1755.  
  1756. if __name__ == '__main__':
  1757. Username = 'fuckcarlos222'
  1758. Password = '123'
  1759.  
  1760. SABot(Username, Password, '74.86.43.9', 1138)
  1761.  
  1762. if __name__ == '__main__':
  1763. Username = 'fuckcarlos223'
  1764. Password = '123'
  1765.  
  1766. SABot(Username, Password, '74.86.43.9', 1138)
  1767.  
  1768. if __name__ == '__main__':
  1769. Username = 'fuckcarlos224'
  1770. Password = '123'
  1771.  
  1772. SABot(Username, Password, '74.86.43.9', 1138)
  1773.  
  1774. if __name__ == '__main__':
  1775. Username = 'fuckcarlos225'
  1776. Password = '123'
  1777.  
  1778. SABot(Username, Password, '74.86.43.9', 1138)
  1779.  
  1780. if __name__ == '__main__':
  1781. Username = 'fuckcarlos226'
  1782. Password = '123'
  1783.  
  1784. SABot(Username, Password, '74.86.43.9', 1138)
  1785.  
  1786. if __name__ == '__main__':
  1787. Username = 'fuckcarlos227'
  1788. Password = '123'
  1789.  
  1790. SABot(Username, Password, '74.86.43.9', 1138)
  1791.  
  1792. if __name__ == '__main__':
  1793. Username = 'fuckcarlos228'
  1794. Password = '123'
  1795.  
  1796. SABot(Username, Password, '74.86.43.9', 1138)
  1797.  
  1798. if __name__ == '__main__':
  1799. Username = 'fuckcarlos229'
  1800. Password = '123'
  1801.  
  1802. SABot(Username, Password, '74.86.43.9', 1138)
  1803.  
  1804. if __name__ == '__main__':
  1805. Username = 'fuckcarlos230'
  1806. Password = '123'
  1807.  
  1808. SABot(Username, Password, '74.86.43.9', 1138)
  1809.  
  1810. if __name__ == '__main__':
  1811. Username = 'fuckcarlos231'
  1812. Password = '123'
  1813.  
  1814. SABot(Username, Password, '74.86.43.9', 1138)
  1815.  
  1816. if __name__ == '__main__':
  1817. Username = 'fuckcarlos232'
  1818. Password = '123'
  1819.  
  1820. SABot(Username, Password, '74.86.43.9', 1138)
  1821.  
  1822. if __name__ == '__main__':
  1823. Username = 'fuckcarlos233'
  1824. Password = '123'
  1825.  
  1826. SABot(Username, Password, '74.86.43.9', 1138)
  1827.  
  1828. if __name__ == '__main__':
  1829. Username = 'fuckcarlos234'
  1830. Password = '123'
  1831.  
  1832. SABot(Username, Password, '74.86.43.9', 1138)
  1833.  
  1834. if __name__ == '__main__':
  1835. Username = 'fuckcarlos235'
  1836. Password = '123'
  1837.  
  1838. SABot(Username, Password, '74.86.43.9', 1138)
  1839.  
  1840. if __name__ == '__main__':
  1841. Username = 'fuckcarlos236'
  1842. Password = '123'
  1843.  
  1844. SABot(Username, Password, '74.86.43.9', 1138)
  1845.  
  1846. if __name__ == '__main__':
  1847. Username = 'fuckcarlos237'
  1848. Password = '123'
  1849.  
  1850. SABot(Username, Password, '74.86.43.9', 1138)
  1851.  
  1852. if __name__ == '__main__':
  1853. Username = 'fuckcarlos238'
  1854. Password = '123'
  1855.  
  1856. SABot(Username, Password, '74.86.43.9', 1138)
  1857.  
  1858. if __name__ == '__main__':
  1859. Username = 'fuckcarlos239'
  1860. Password = '123'
  1861.  
  1862. SABot(Username, Password, '74.86.43.9', 1138)
  1863.  
  1864. if __name__ == '__main__':
  1865. Username = 'fuckcarlos240'
  1866. Password = '123'
  1867.  
  1868. SABot(Username, Password, '74.86.43.9', 1138)
  1869.  
  1870. if __name__ == '__main__':
  1871. Username = 'fuckcarlos241'
  1872. Password = '123'
  1873.  
  1874. SABot(Username, Password, '74.86.43.9', 1138)
  1875.  
  1876. if __name__ == '__main__':
  1877. Username = 'fuckcarlos242'
  1878. Password = '123'
  1879.  
  1880. SABot(Username, Password, '74.86.43.9', 1138)
  1881.  
  1882. if __name__ == '__main__':
  1883. Username = 'fuckcarlos243'
  1884. Password = '123'
  1885.  
  1886. SABot(Username, Password, '74.86.43.9', 1138)
  1887.  
  1888. if __name__ == '__main__':
  1889. Username = 'fuckcarlos244'
  1890. Password = '123'
  1891.  
  1892. SABot(Username, Password, '74.86.43.9', 1138)
  1893.  
  1894. if __name__ == '__main__':
  1895. Username = 'fuckcarlos245'
  1896. Password = '123'
  1897.  
  1898. SABot(Username, Password, '74.86.43.9', 1138)
  1899.  
  1900. if __name__ == '__main__':
  1901. Username = 'fuckcarlos246'
  1902. Password = '123'
  1903.  
  1904. SABot(Username, Password, '74.86.43.9', 1138)
  1905.  
  1906. if __name__ == '__main__':
  1907. Username = 'fuckcarlos247'
  1908. Password = '123'
  1909.  
  1910. SABot(Username, Password, '74.86.43.9', 1138)
  1911.  
  1912. if __name__ == '__main__':
  1913. Username = 'fuckcarlos248'
  1914. Password = '123'
  1915.  
  1916. SABot(Username, Password, '74.86.43.9', 1138)
  1917.  
  1918. if __name__ == '__main__':
  1919. Username = 'fuckcarlos249'
  1920. Password = '123'
  1921.  
  1922. SABot(Username, Password, '74.86.43.9', 1138)
  1923.  
  1924. if __name__ == '__main__':
  1925. Username = 'fuckcarlos250'
  1926. Password = '123'
  1927.  
  1928. SABot(Username, Password, '74.86.43.9', 1138)
  1929.  
  1930. if __name__ == '__main__':
  1931. Username = 'fuckcarlos251'
  1932. Password = '123'
  1933.  
  1934. SABot(Username, Password, '74.86.43.9', 1138)
  1935.  
  1936. if __name__ == '__main__':
  1937. Username = 'fuckcarlos251'
  1938. Password = '123'
  1939.  
  1940. SABot(Username, Password, '74.86.43.9', 1138)
  1941.  
  1942. if __name__ == '__main__':
  1943. Username = 'fuckcarlos252'
  1944. Password = '123'
  1945.  
  1946. SABot(Username, Password, '74.86.43.9', 1138)
  1947.  
  1948. if __name__ == '__main__':
  1949. Username = 'fuckcarlos253'
  1950. Password = '123'
  1951.  
  1952. SABot(Username, Password, '74.86.43.9', 1138)
  1953.  
  1954. if __name__ == '__main__':
  1955. Username = 'fuckcarlos254'
  1956. Password = '123'
  1957.  
  1958. SABot(Username, Password, '74.86.43.9', 1138)
  1959.  
  1960. if __name__ == '__main__':
  1961. Username = 'fuckcarlos256'
  1962. Password = '123'
  1963.  
  1964. SABot(Username, Password, '74.86.43.9', 1138)
  1965.  
  1966. if __name__ == '__main__':
  1967. Username = 'fuckcarlos257'
  1968. Password = '123'
  1969.  
  1970. SABot(Username, Password, '74.86.43.9', 1138)
  1971.  
  1972. if __name__ == '__main__':
  1973. Username = 'fuckcarlos258'
  1974. Password = '123'
  1975.  
  1976. SABot(Username, Password, '74.86.43.9', 1138)
  1977.  
  1978. if __name__ == '__main__':
  1979. Username = 'fuckcarlos259'
  1980. Password = '123'
  1981.  
  1982. SABot(Username, Password, '74.86.43.9', 1138)
  1983.  
  1984. if __name__ == '__main__':
  1985. Username = 'fuckcarlos260'
  1986. Password = '123'
  1987.  
  1988. SABot(Username, Password, '74.86.43.9', 1138)
  1989.  
  1990. if __name__ == '__main__':
  1991. Username = 'fuckcarlos261'
  1992. Password = '123'
  1993.  
  1994. SABot(Username, Password, '74.86.43.9', 1138)
  1995.  
  1996. if __name__ == '__main__':
  1997. Username = 'fuckcarlos262'
  1998. Password = '123'
  1999.  
  2000. SABot(Username, Password, '74.86.43.9', 1138)
  2001.  
  2002. if __name__ == '__main__':
  2003. Username = 'fuckcarlos263'
  2004. Password = '123'
  2005.  
  2006. SABot(Username, Password, '74.86.43.9', 1138)
  2007.  
  2008. if __name__ == '__main__':
  2009. Username = 'fuckcarlos264'
  2010. Password = '123'
  2011.  
  2012. SABot(Username, Password, '74.86.43.9', 1138)
  2013.  
  2014. if __name__ == '__main__':
  2015. Username = 'fuckcarlos265'
  2016. Password = '123'
  2017.  
  2018. SABot(Username, Password, '74.86.43.9', 1138)
  2019.  
  2020. if __name__ == '__main__':
  2021. Username = 'fuckcarlos265'
  2022. Password = '123'
  2023.  
  2024. SABot(Username, Password, '74.86.43.9', 1138)
  2025.  
  2026. if __name__ == '__main__':
  2027. Username = 'fuckcarlos266'
  2028. Password = '123'
  2029.  
  2030. SABot(Username, Password, '74.86.43.9', 1138)
  2031.  
  2032. if __name__ == '__main__':
  2033. Username = 'fuckcarlos267'
  2034. Password = '123'
  2035.  
  2036. SABot(Username, Password, '74.86.43.9', 1138)
  2037.  
  2038. if __name__ == '__main__':
  2039. Username = 'fuckcarlos268'
  2040. Password = '123'
  2041.  
  2042. SABot(Username, Password, '74.86.43.9', 1138)
  2043.  
  2044. if __name__ == '__main__':
  2045. Username = 'fuckcarlos269'
  2046. Password = '123'
  2047.  
  2048. SABot(Username, Password, '74.86.43.9', 1138)
  2049.  
  2050. if __name__ == '__main__':
  2051. Username = 'fuckcarlos270'
  2052. Password = '123'
  2053.  
  2054. SABot(Username, Password, '74.86.43.9', 1138)
  2055.  
  2056. if __name__ == '__main__':
  2057. Username = 'fuckcarlos271'
  2058. Password = '123'
  2059.  
  2060. SABot(Username, Password, '74.86.43.9', 1138)
  2061.  
  2062. if __name__ == '__main__':
  2063. Username = 'fuckcarlos272'
  2064. Password = '123'
  2065.  
  2066. SABot(Username, Password, '74.86.43.9', 1138)
  2067.  
  2068. if __name__ == '__main__':
  2069. Username = 'fuckcarlos273'
  2070. Password = '123'
  2071.  
  2072. SABot(Username, Password, '74.86.43.9', 1138)
  2073.  
  2074. if __name__ == '__main__':
  2075. Username = 'fuckcarlos274'
  2076. Password = '123'
  2077.  
  2078. SABot(Username, Password, '74.86.43.9', 1138)
  2079.  
  2080. if __name__ == '__main__':
  2081. Username = 'fuckcarlos275'
  2082. Password = '123'
  2083.  
  2084. SABot(Username, Password, '74.86.43.9', 1138)
  2085.  
  2086. if __name__ == '__main__':
  2087. Username = 'fuckcarlos276'
  2088. Password = '123'
  2089.  
  2090. SABot(Username, Password, '74.86.43.9', 1138)
  2091.  
  2092. if __name__ == '__main__':
  2093. Username = 'fuckcarlos277'
  2094. Password = '123'
  2095.  
  2096. SABot(Username, Password, '74.86.43.9', 1138)
  2097.  
  2098. if __name__ == '__main__':
  2099. Username = 'fuckcarlos278'
  2100. Password = '123'
  2101.  
  2102. SABot(Username, Password, '74.86.43.9', 1138)
  2103.  
  2104. if __name__ == '__main__':
  2105. Username = 'fuckcarlos279'
  2106. Password = '123'
  2107.  
  2108. SABot(Username, Password, '74.86.43.9', 1138)
  2109.  
  2110. if __name__ == '__main__':
  2111. Username = 'fuckcarlos280'
  2112. Password = '123'
  2113.  
  2114. SABot(Username, Password, '74.86.43.9', 1138)
  2115.  
  2116. if __name__ == '__main__':
  2117. Username = 'fuckcarlos281'
  2118. Password = '123'
  2119.  
  2120. SABot(Username, Password, '74.86.43.9', 1138)
  2121.  
  2122. if __name__ == '__main__':
  2123. Username = 'fuckcarlos282'
  2124. Password = '123'
  2125.  
  2126. SABot(Username, Password, '74.86.43.9', 1138)
  2127.  
  2128. if __name__ == '__main__':
  2129. Username = 'fuckcarlos283'
  2130. Password = '123'
  2131.  
  2132. SABot(Username, Password, '74.86.43.9', 1138)
  2133.  
  2134. if __name__ == '__main__':
  2135. Username = 'fuckcarlos284'
  2136. Password = '123'
  2137.  
  2138. SABot(Username, Password, '74.86.43.9', 1138)
  2139.  
  2140. if __name__ == '__main__':
  2141. Username = 'fuckcarlos285'
  2142. Password = '123'
  2143.  
  2144. SABot(Username, Password, '74.86.43.9', 1138)
  2145.  
  2146. if __name__ == '__main__':
  2147. Username = 'fuckcarlos286'
  2148. Password = '123'
  2149.  
  2150. SABot(Username, Password, '74.86.43.9', 1138)
  2151.  
  2152. if __name__ == '__main__':
  2153. Username = 'fuckcarlos287'
  2154. Password = '123'
  2155.  
  2156. SABot(Username, Password, '74.86.43.9', 1138)
  2157.  
  2158. if __name__ == '__main__':
  2159. Username = 'fuckcarlos288'
  2160. Password = '123'
  2161.  
  2162. SABot(Username, Password, '74.86.43.9', 1138)
  2163.  
  2164. if __name__ == '__main__':
  2165. Username = 'fuckcarlos289'
  2166. Password = '123'
  2167.  
  2168. SABot(Username, Password, '74.86.43.9', 1138)
  2169.  
  2170. if __name__ == '__main__':
  2171. Username = 'fuckcarlos290'
  2172. Password = '123'
  2173.  
  2174. SABot(Username, Password, '74.86.43.9', 1138)
  2175.  
  2176. if __name__ == '__main__':
  2177. Username = 'fuckcarlos291'
  2178. Password = '123'
  2179.  
  2180. SABot(Username, Password, '74.86.43.9', 1138)
  2181.  
  2182. if __name__ == '__main__':
  2183. Username = 'fuckcarlos292'
  2184. Password = '123'
  2185.  
  2186. SABot(Username, Password, '74.86.43.9', 1138)
  2187.  
  2188. if __name__ == '__main__':
  2189. Username = 'fuckcarlos293'
  2190. Password = '123'
  2191.  
  2192. SABot(Username, Password, '74.86.43.9', 1138)
  2193.  
  2194. if __name__ == '__main__':
  2195. Username = 'fuckcarlos294'
  2196. Password = '123'
  2197.  
  2198. SABot(Username, Password, '74.86.43.9', 1138)
  2199.  
  2200. if __name__ == '__main__':
  2201. Username = 'fuckcarlos295'
  2202. Password = '123'
  2203.  
  2204. SABot(Username, Password, '74.86.43.9', 1138)
  2205.  
  2206. if __name__ == '__main__':
  2207. Username = 'fuckcarlos296'
  2208. Password = '123'
  2209.  
  2210. SABot(Username, Password, '74.86.43.9', 1138)
  2211.  
  2212. if __name__ == '__main__':
  2213. Username = 'fuckcarlos297'
  2214. Password = '123'
  2215.  
  2216. SABot(Username, Password, '74.86.43.9', 1138)
  2217.  
  2218. if __name__ == '__main__':
  2219. Username = 'fuckcarlos298'
  2220. Password = '123'
  2221.  
  2222. SABot(Username, Password, '74.86.43.9', 1138)
  2223.  
  2224. if __name__ == '__main__':
  2225. Username = 'fuckcarlos299'
  2226. Password = '123'
  2227.  
  2228. SABot(Username, Password, '74.86.43.9', 1138)
  2229.  
  2230. if __name__ == '__main__':
  2231. Username = 'fuckcarlos300'
  2232. Password = '123'
  2233.  
  2234. SABot(Username, Password, '74.86.43.9', 1138)
  2235.  
  2236. if __name__ == '__main__':
  2237. Username = 'fuckcarlos301'
  2238. Password = '123'
  2239.  
  2240. SABot(Username, Password, '74.86.43.9', 1138)
  2241.  
  2242. if __name__ == '__main__':
  2243. Username = 'fuckcarlos302'
  2244. Password = '123'
  2245.  
  2246. SABot(Username, Password, '74.86.43.9', 1138)
  2247.  
  2248. if __name__ == '__main__':
  2249. Username = 'fuckcarlos303'
  2250. Password = '123'
  2251.  
  2252. SABot(Username, Password, '74.86.43.9', 1138)
  2253.  
  2254. if __name__ == '__main__':
  2255. Username = 'fuckcarlos304'
  2256. Password = '123'
  2257.  
  2258. SABot(Username, Password, '74.86.43.9', 1138)
  2259.  
  2260. if __name__ == '__main__':
  2261. Username = 'fuckcarlos305'
  2262. Password = '123'
  2263.  
  2264. SABot(Username, Password, '74.86.43.9', 1138)
  2265.  
  2266. if __name__ == '__main__':
  2267. Username = 'fuckcarlos306'
  2268. Password = '123'
  2269.  
  2270. SABot(Username, Password, '74.86.43.9', 1138)
  2271.  
  2272. if __name__ == '__main__':
  2273. Username = 'fuckcarlos307'
  2274. Password = '123'
  2275.  
  2276. SABot(Username, Password, '74.86.43.9', 1138)
  2277.  
  2278. if __name__ == '__main__':
  2279. Username = 'fuckcarlos308'
  2280. Password = '123'
  2281.  
  2282. SABot(Username, Password, '74.86.43.9', 1138)
  2283.  
  2284. if __name__ == '__main__':
  2285. Username = 'fuckcarlos309'
  2286. Password = '123'
  2287.  
  2288. SABot(Username, Password, '74.86.43.9', 1138)
  2289.  
  2290. if __name__ == '__main__':
  2291. Username = 'fuckcarlos310'
  2292. Password = '123'
  2293.  
  2294. SABot(Username, Password, '74.86.43.9', 1138)
  2295.  
  2296. if __name__ == '__main__':
  2297. Username = 'fuckcarlos311'
  2298. Password = '123'
  2299.  
  2300. SABot(Username, Password, '74.86.43.9', 1138)
  2301.  
  2302. if __name__ == '__main__':
  2303. Username = 'fuckcarlos312'
  2304. Password = '123'
  2305.  
  2306. SABot(Username, Password, '74.86.43.9', 1138)
  2307.  
  2308. if __name__ == '__main__':
  2309. Username = 'fuckcarlos313'
  2310. Password = '123'
  2311.  
  2312. SABot(Username, Password, '74.86.43.9', 1138)
  2313.  
  2314. if __name__ == '__main__':
  2315. Username = 'fuckcarlos314'
  2316. Password = '123'
  2317.  
  2318. SABot(Username, Password, '74.86.43.9', 1138)
  2319.  
  2320. if __name__ == '__main__':
  2321. Username = 'fuckcarlos315'
  2322. Password = '123'
  2323.  
  2324. SABot(Username, Password, '74.86.43.9', 1138)
  2325.  
  2326. if __name__ == '__main__':
  2327. Username = 'fuckcarlos316'
  2328. Password = '123'
  2329.  
  2330. SABot(Username, Password, '74.86.43.9', 1138)
  2331.  
  2332. if __name__ == '__main__':
  2333. Username = 'fuckcarlos317'
  2334. Password = '123'
  2335.  
  2336. SABot(Username, Password, '74.86.43.9', 1138)
  2337.  
  2338. if __name__ == '__main__':
  2339. Username = 'fuckcarlos318'
  2340. Password = '123'
  2341.  
  2342. SABot(Username, Password, '74.86.43.9', 1138)
  2343.  
  2344. if __name__ == '__main__':
  2345. Username = 'fuckcarlos319'
  2346. Password = '123'
  2347.  
  2348. SABot(Username, Password, '74.86.43.9', 1138)
  2349.  
  2350. if __name__ == '__main__':
  2351. Username = 'fuckcarlos320'
  2352. Password = '123'
  2353.  
  2354. SABot(Username, Password, '74.86.43.9', 1138)
  2355.  
  2356. if __name__ == '__main__':
  2357. Username = 'fuckcarlos321'
  2358. Password = '123'
  2359.  
  2360. SABot(Username, Password, '74.86.43.9', 1138)
  2361.  
  2362. if __name__ == '__main__':
  2363. Username = 'fuckcarlos322'
  2364. Password = '123'
  2365.  
  2366. SABot(Username, Password, '74.86.43.9', 1138)
  2367.  
  2368. if __name__ == '__main__':
  2369. Username = 'fuckcarlos323'
  2370. Password = '123'
  2371.  
  2372. SABot(Username, Password, '74.86.43.9', 1138)
  2373.  
  2374. if __name__ == '__main__':
  2375. Username = 'fuckcarlos324'
  2376. Password = '123'
  2377.  
  2378. SABot(Username, Password, '74.86.43.9', 1138)
  2379.  
  2380. if __name__ == '__main__':
  2381. Username = 'fuckcarlos325'
  2382. Password = '123'
  2383.  
  2384. SABot(Username, Password, '74.86.43.9', 1138)
  2385.  
  2386. if __name__ == '__main__':
  2387. Username = 'fuckcarlos326'
  2388. Password = '123'
  2389.  
  2390. SABot(Username, Password, '74.86.43.9', 1138)
  2391.  
  2392. if __name__ == '__main__':
  2393. Username = 'fuckcarlos327'
  2394. Password = '123'
  2395.  
  2396. SABot(Username, Password, '74.86.43.9', 1138)
  2397.  
  2398. if __name__ == '__main__':
  2399. Username = 'fuckcarlos328'
  2400. Password = '123'
  2401.  
  2402. SABot(Username, Password, '74.86.43.9', 1138)
  2403.  
  2404. if __name__ == '__main__':
  2405. Username = 'fuckcarlos329'
  2406. Password = '123'
  2407.  
  2408. SABot(Username, Password, '74.86.43.9', 1138)
  2409.  
  2410. if __name__ == '__main__':
  2411. Username = 'fuckcarlos330'
  2412. Password = '123'
  2413.  
  2414. SABot(Username, Password, '74.86.43.9', 1138)
  2415.  
  2416. if __name__ == '__main__':
  2417. Username = 'fuckcarlos331'
  2418. Password = '123'
  2419.  
  2420. SABot(Username, Password, '74.86.43.9', 1138)
  2421.  
  2422. if __name__ == '__main__':
  2423. Username = 'fuckcarlos332'
  2424. Password = '123'
  2425.  
  2426. SABot(Username, Password, '74.86.43.9', 1138)
  2427.  
  2428. if __name__ == '__main__':
  2429. Username = 'fuckcarlos333'
  2430. Password = '123'
  2431.  
  2432. SABot(Username, Password, '74.86.43.9', 1138)
  2433.  
  2434. if __name__ == '__main__':
  2435. Username = 'fuckcarlos334'
  2436. Password = '123'
  2437.  
  2438. SABot(Username, Password, '74.86.43.9', 1138)
  2439.  
  2440. if __name__ == '__main__':
  2441. Username = 'fuckcarlos335'
  2442. Password = '123'
  2443.  
  2444. SABot(Username, Password, '74.86.43.9', 1138)
  2445.  
  2446. if __name__ == '__main__':
  2447. Username = 'fuckcarlos336'
  2448. Password = '123'
  2449.  
  2450. SABot(Username, Password, '74.86.43.9', 1138)
  2451.  
  2452. if __name__ == '__main__':
  2453. Username = 'fuckcarlos337'
  2454. Password = '123'
  2455.  
  2456. SABot(Username, Password, '74.86.43.9', 1138)
  2457.  
  2458. if __name__ == '__main__':
  2459. Username = 'fuckcarlos338'
  2460. Password = '123'
  2461.  
  2462. SABot(Username, Password, '74.86.43.9', 1138)
  2463.  
  2464. if __name__ == '__main__':
  2465. Username = 'fuckcarlos339'
  2466. Password = '123'
  2467.  
  2468. SABot(Username, Password, '74.86.43.9', 1138)
  2469.  
  2470. if __name__ == '__main__':
  2471. Username = 'fuckcarlos340'
  2472. Password = '123'
  2473.  
  2474. SABot(Username, Password, '74.86.43.9', 1138)
  2475.  
  2476. if __name__ == '__main__':
  2477. Username = 'fuckcarlos341'
  2478. Password = '123'
  2479.  
  2480. SABot(Username, Password, '74.86.43.9', 1138)
  2481.  
  2482. if __name__ == '__main__':
  2483. Username = 'fuckcarlos342'
  2484. Password = '123'
  2485.  
  2486. SABot(Username, Password, '74.86.43.9', 1138)
  2487.  
  2488. if __name__ == '__main__':
  2489. Username = 'fuckcarlos343'
  2490. Password = '123'
  2491.  
  2492. SABot(Username, Password, '74.86.43.9', 1138)
  2493.  
  2494. if __name__ == '__main__':
  2495. Username = 'fuckcarlos344'
  2496. Password = '123'
  2497.  
  2498. SABot(Username, Password, '74.86.43.9', 1138)
  2499.  
  2500. if __name__ == '__main__':
  2501. Username = 'fuckcarlos345'
  2502. Password = '123'
  2503.  
  2504. SABot(Username, Password, '74.86.43.9', 1138)
  2505.  
  2506. if __name__ == '__main__':
  2507. Username = 'fuckcarlos346'
  2508. Password = '123'
  2509.  
  2510. SABot(Username, Password, '74.86.43.9', 1138)
  2511.  
  2512. if __name__ == '__main__':
  2513. Username = 'fuckcarlos347'
  2514. Password = '123'
  2515.  
  2516. SABot(Username, Password, '74.86.43.9', 1138)
  2517.  
  2518. if __name__ == '__main__':
  2519. Username = 'fuckcarlos348'
  2520. Password = '123'
  2521.  
  2522. SABot(Username, Password, '74.86.43.9', 1138)
  2523.  
  2524. if __name__ == '__main__':
  2525. Username = 'fuckcarlos349'
  2526. Password = '123'
  2527.  
  2528. SABot(Username, Password, '74.86.43.9', 1138)
  2529.  
  2530. if __name__ == '__main__':
  2531. Username = 'fuckcarlos350'
  2532. Password = '123'
  2533.  
  2534. SABot(Username, Password, '74.86.43.9', 1138)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement